質問

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.

役に立ちましたか?

解決

$objADSI.Delete($strCLass,$StrName)

他のヒント

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top