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