PowerShell AD Group Membership Listing
To get the member of a particular group in Active Directory:
Get-ADGroup -filter 'name -eq "Group Name" | Get-ADGroupMember -Recursive | fl name
Replace the "Group Name" with the group name from which you want to get the member of
Get-ADGroup -filter 'name -eq "Group Name" | Get-ADGroupMember -Recursive | fl name
Replace the "Group Name" with the group name from which you want to get the member of
Comments