Skip to content

Instantly share code, notes, and snippets.

@PatrickMcDonald
Last active August 29, 2015 14:02
Show Gist options
  • Save PatrickMcDonald/531c5ca15de82787d9be to your computer and use it in GitHub Desktop.
Save PatrickMcDonald/531c5ca15de82787d9be to your computer and use it in GitHub Desktop.
Import-Module ActiveDirectory
# List members of a group
Get-ADGroupMember "Domain Admins" -recursive | Select-Object name
# list group memberships for user
Get-ADPrincipalGroupMembership "username" | Select-Object name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment