Frage

I am using this script to add/create a new group:

$strCLass = "Group"
$StrName = "CN=$naam"
$intGroupType = $type
$objADSI = [ADSI]"LDAP://ou=$OU,dc=myADserver,dc=local" 
$objGroup = $objADSI.create($strCLass, $StrName)
$ObjGroup.put("GroupType",$intGroupType)
$objGroup.setInfo()

I can't find a way to reverse this so that i can delete group from the OU.

War es hilfreich?

Lösung

$objADSI.Delete($strCLass,$StrName)

Andere Tipps

Can you use the Powershell ActiveDirectory module?

If you can, then it's as simple as Remove-ADGroup

http://technet.microsoft.com/en-us/library/ee617228.aspx

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top