共用方式為


Set-SCDriverPackage

更新現有驅動程式套件對象的屬性。

語法

Set-SCDriverPackage
   [-VMMServer <ServerConnection>]
   [-DriverPackage] <DriverPackage>
   -Tag <System.Collections.Generic.List`1[System.String]>
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]

Description

Set-SCDriverPackage Cmdlet 會更新現有驅動程式套件對象的屬性。

範例

範例 1:更新一組驅動程式套件的標記

PS C:\> $Drivers = Get-SCDriverPackage -Tag "Production"
PS C:\> ForEach ($Driver in $Drivers) {Set-SCDriverPackage -DriverPackage $Driver -Tag {Production, NewTag}}

第一個命令會取得具有 Production 標記值的所有驅動程式封裝物件,並將物件儲存在$Drivers物件陣列中。

第二個命令會使用 ForEach 語句,將值 「NewTag」 新增至儲存在 $Drivers 中的每個驅動程式套件物件。

如需 PowerShell ForEach 語句的相關信息,請輸入 Get-Help about_Foreach

參數

-DriverPackage

指定驅動程式套件物件。

類型:DriverPackage
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-JobVariable

指定作業進度會追蹤並儲存在此參數所命名的變數中。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-PROTipID

指定觸發此動作之效能和資源優化提示 (PRO 提示) 的識別碼。 此參數可讓您稽核 PRO 秘訣。

類型:Guid
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-RunAsynchronously

表示作業會以異步方式執行,讓控件立即返回命令殼層。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Tag

指定要與 物件建立關聯的單字或片語,以便搜尋具有指定標記集的所有物件。 您可以搜尋標記的子集,也可以搜尋完整的標記集。

類型:System.Collections.Generic.List`1[System.String]
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-VMMServer

指定 Virtual Machine Manager (VMM) 伺服器物件。

類型:ServerConnection
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

輸出

DriverPackage[]

此 Cmdlet 會傳回 DriverPackage 對象的陣列。