Domanda

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.

È stato utile?

Soluzione

$objADSI.Delete($strCLass,$StrName)

Altri suggerimenti

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top