Skip to content

Instantly share code, notes, and snippets.

@tomarbuthnot
Created June 2, 2014 10:38
Show Gist options
  • Save tomarbuthnot/5fdcb9c817e527d5fb3c to your computer and use it in GitHub Desktop.
Save tomarbuthnot/5fdcb9c817e527d5fb3c to your computer and use it in GitHub Desktop.
Get AD Group Member Names
$Group = "groupname"
Get-ADGroupMember -Identity "$Group" | Get-ADUser | Select-Object GivenName,Surname,Name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment