Skip to content

Instantly share code, notes, and snippets.

@matejskubic
Created June 10, 2015 11:12
Show Gist options
  • Save matejskubic/5975829ac837edab8512 to your computer and use it in GitHub Desktop.
Save matejskubic/5975829ac837edab8512 to your computer and use it in GitHub Desktop.
Saves user group membership to csv
Import-Module ActiveDirectory
Get-ADPrincipalGroupMembership (Read-Host "Username")|select SamAccountName| sort SamAccountName | ConvertTo-Csv -NoTypeInformation > "$($env:TEMP)\user-groups.csv"
start "$($env:TEMP)\user-groups.csv"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment