Other Posts in this Series:
- Use PowerShell ADSI to Search Computers in Active Directory
- Use PowerShell ADSI to Search Groups in Active Directory
- Use PowerShell ADSI to Create an AD Group
- Use PowerShell ADSI to Delete an AD Group
- Use PowerShell ADSI to Modify an AD Group
This post provides a simple example of how we can use PowerShell ADSI to delete an AD group.
#OU containing the AD group
$adGroupOU="OU=Application,OU=Groups,DC=alkanesolutions,DC=co,DC=uk"
#AD group name
$addADGroup = "CN=alkane_ad_group"
#Full distinguished name of AD group
$distinguishedName = "$addADGroup,$adGroupOU"
#check if exists
$group = ([ADSISearcher] "(distinguishedName=$distinguishedName)").FindOne()
if ($group -ne $null)
{
#delete AD group
$adGroupObj = [ADSI]"LDAP://$adGroupOU"
$adGroupObj.Delete("Group",$addADGroup)
}