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 an example of how we can use ADSI to check if a computer is a member of an AD Group using the [ADSISearcher] type accelerator:
#remember that this is used as a regular expression (using -match), so escape any brackets etc with a back slash
$ADGroup = "Example_AD_Group"
$machineName = "AlkaneMachine"
#check if computer is a member of the group
$ADGroupObj = (([ADSISearcher] "(&(objectCategory=computer)(objectClass=computer)(cn=$machineName))").FindOne().Properties.memberof -match "CN=$ADGroup,")
if ($ADGroupObj -and $ADGroupObj.count -gt 0)
{
#computer is a member - do something!
}