You want to get a list of users who exist as members of a AD (Active Directory) security group. Here are some quick steps on accomplishing this task.
Lets begin:
- Open PowerShell or PowerShell ISE
- Type Import-Module ActiveDirectory
- Followed by Get-ADGroupMember -identity “Group Name” | select name | Out-GridView
Import-Module ActiveDirectory Get-ADGroupMember -identity “Name of Group” | select name | Out-GridView
And there you go, fast and simple to do.