December 24th, 2013

PowerTip: Show Group Members with PowerShell

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to get a list of group members in Active Directory.

Hey, Scripting Guy! Question How can I use Windows PowerShell to regularly show who is in an Active Directory group, for example, Domain Admins?

Hey, Scripting Guy! Answer To show who is in the Domain Admins group in Active Directory, run the following command:

Get-ADGroupMember DomainAdmins

If you’d like to view this in a nicer format, use:

Get-ADGroupMember DomainAdmins | FORMAT-Table

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.