0 Pluspunkte 0 Minuspunkte
Wie lege ich eine neue Benutzergruppe mit Powershell an?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Mit dem Cmdlet New-AdGroup kannst du eine neue Benutzergruppe in Active Directory anlegen.

# Modul für Active Directory laden
Import-Module ActiveDirectory

# Namen und Eigenschaften der neuen Gruppe festlegen
$groupName = "NeueGruppe"
$groupSamAccountName = "NeueGruppe"
$groupDescription = "Eine neue Benutzergruppe"
$groupPath = "OU=Gruppen,DC=dein,DC=domain,DC=com"  # Passe dies entsprechend deiner AD-Struktur an

# Neue Gruppe erstellen
New-ADGroup -Name $groupName `
            -SamAccountName $groupSamAccountName `
            -GroupCategory Security `
            -GroupScope Global `
            -Description $groupDescription `
            -Path $groupPath
von