I am trying to list the users/group members of a specific AD group in Powershell. I dont want to list everyone and everything, just the group members that I am interested in.
For example: I have a AD group called SqlAdmins. I just want to list the members/users in that group.
I tried this: " Get-QADGroup -sizeLimit 0 | select @{name="GroupName";expression={$_.name}} -expand members | select GroupName,@{n='Member';e={ (Get-QADObject $_).name}}" and it listed absolutely everything, but cannot work out how to list for only one group.
Thanks a lot.