A small PowerShell script to list users in a specific Active Directory group
get-adgroup groupname | get-adgroupmember | sort name | % {$_.name}
groupname = The name of the AD group you wish to look at.
A small PowerShell script to list users in a specific Active Directory group
get-adgroup groupname | get-adgroupmember | sort name | % {$_.name}
groupname = The name of the AD group you wish to look at.