共用方式為


Set-WdsInstallImageGroup

Set-WdsInstallImageGroup

Modifies the name and access permissions of an install image group.

語法

Parameter Set: Set3
Set-WdsInstallImageGroup -Name <String> [-AsJob] [-CimSession <CimSession[]> ] [-NewName <String> ] [-SecurityDescriptorSDDL <String> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

詳細描述

The Set-WdsInstallImageGroup cmdlet modifies the name and access permissions of an install image group. Specify a group to modify by using the Name parameter. Specify the access permissions on the image group using the SecurityDescriptorSDDL parameter.

參數

-AsJob

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-CimSession<CimSession[]>

在遠端工作階段或遠端電腦上執行 Cmdlet。輸入電腦名稱或工作階段物件,例如 New-CimSessionGet-CimSession Cmdlet 的輸出。預設為本機電腦上的目前工作階段。

別名

Session

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-Name<String>

Specifies a name. This is the name of an install image group.

別名

GroupName

必要?

true

位置?

named

預設值

接受管線輸入?

True (ByPropertyName)

接受萬用字元?

false

-NewName<String>

Specifies a new name for the install image group.

別名

NewGroupName

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-SecurityDescriptorSDDL<String>

Specifies the security descriptor for the image group in SDDL format.

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-ThrottleLimit<Int32>

指定為執行此 Cmdlet 可建立的最大同時作業數。如果省略這個參數或輸入 0 的值,則 Windows PowerShell® 會根據在電腦上執行的 CIM Cmdlet 數目,計算 Cmdlet 的最佳節流限制。節流限制僅適用於目前 Cmdlet,不適用於工作階段或電腦。

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

<CommonParameters>

此 Cmdlet 支援一般參數:-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer 與 -OutVariable。如需詳細資訊,請參閱 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

輸入

輸入類型是您可以使用管線處理方式傳遞給 Cmdlet 的物件類型。

輸出

輸出類型是 Cmdlet 所發出的物件類型。

  • Microsoft.Management.Infrastructure.CimInstance#MSFT_WdsInstallImageGroup

範例

Example 1: Rename an install image group

This command renames the install image group named Fabrikam LOB Images.

PS C:\> Set-WdsInstallImageGroup -Name "Fabrikam LOB Images" -NewName "Fabrikam Customized System Images"

Example 2: Modify access permissions of an install image group

This command modifies the access permissions that users require for the session configuration of the install image group named Fabrikam System Images. The command specifies the security descriptor for the image group in SDDL format.

PS C:\> Set-WdsInstallImageGroup -Name "Fabrikam System Images" -SecurityDescriptorSDDL "O:BAG:DUD:(A;OICI;FA;;;SY)(A;OICI;FA;;;BA)(A;OICI;0x1200a9;;;AU)(A;OICI;FA;;;S-1-5-80-1688844526-3235337491-1375791646-891369040-3692469510)"

相關主題

Get-WdsInstallImageGroup

New-WdsInstallImageGroup

Remove-WdsInstallImageGroup