Share via


Set-WdsInstallImageGroup

Set-WdsInstallImageGroup

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

Sintassi

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

Descrizione dettagliata

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.

Parametri

-AsJob

Alias

nessuno

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

-CimSession<CimSession[]>

Esegue il cmdlet in una sessione remota o in un computer remoto. Immettere un nome di computer o un oggetto di sessione, ad esempio l'output del cmdlet New-CimSession o Get-CimSession. Il valore predefinito è la sessione corrente nel computer locale.

Alias

Session

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

-Name<String>

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

Alias

GroupName

Obbligatorio?

true

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

True (ByPropertyName)

Accetta caratteri jolly?

false

-NewName<String>

Specifies a new name for the install image group.

Alias

NewGroupName

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

-SecurityDescriptorSDDL<String>

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

Alias

nessuno

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

-ThrottleLimit<Int32>

Specifica il numero massimo di operazioni simultanee che è possibile stabilire per eseguire il cmdlet. Se il parametro viene omesso o si specifica il valore 0, Windows PowerShell® calcola un valore limite ottimale per il cmdlet basato sul numero di cmdlet CIM in esecuzione nel computer. Questo valore limite si applica solo al cmdlet corrente, non alla sessione o al computer.

Alias

nessuno

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

<CommonParameters>

Questo cmdlet supporta i parametri comuni: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer e -OutVariable. Per altre informazioni, vedere   about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Input

Il tipo di input è il tipo degli oggetti che è possibile reindirizzare al cmdlet.

Output

Il tipo di output corrisponde al tipo di oggetti generati dal cmdlet.

  • Microsoft.Management.Infrastructure.CimInstance#MSFT_WdsInstallImageGroup

Esempi

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)"

Argomenti correlati

Get-WdsInstallImageGroup

New-WdsInstallImageGroup

Remove-WdsInstallImageGroup