Showing posts with label users. Show all posts
Showing posts with label users. Show all posts

Monday, April 20, 2020

Technical Post - List Users of Active Directory Group

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.