Skip to content

Instantly share code, notes, and snippets.

@kalebo
Created December 21, 2016 22:41
Show Gist options
  • Save kalebo/bcb11962a878835e643c5495218a97c7 to your computer and use it in GitHub Desktop.
Save kalebo/bcb11962a878835e643c5495218a97c7 to your computer and use it in GitHub Desktop.
Select more info for each of the users in a AD group, sort and format
get-adgroupmember adgroupname | foreach {get-aduser $_.name | select name, surname, givenname} | sort-object surname | Format-Table -autosize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment