question

ChattaAntara-0802 avatar image
0 Votes"
ChattaAntara-0802 asked IanXue-MSFT answered

Need help on Powershell command - how to extract all users,groups and contacts in a ADgroup

Need help on Powershell command - how to extract all users,groups and contacts in a ADgroup

windows-server-powershell
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

IanXue-MSFT avatar image
0 Votes"
IanXue-MSFT answered

Hi,

Please try this

 $group = "CN=testgroup,OU=testOU,DC=contoso,DC=com"
 Get-ADObject -Filter "memberof -eq '$group'"

Best Regards,
Ian Xue
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

RichMatheisen-8856 avatar image
0 Votes"
RichMatheisen-8856 answered

Use the Get-ADGroupMember cmdlet.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.