Skip to content

Instantly share code, notes, and snippets.

@moisei
Last active May 2, 2019 09:00
Show Gist options
  • Save moisei/14e2cadc733379602bdc3d9b853acd73 to your computer and use it in GitHub Desktop.
Save moisei/14e2cadc733379602bdc3d9b853acd73 to your computer and use it in GitHub Desktop.
Sorted list of ActiveDirectory users principals in lowercase
Get-ADUser -Filter * | Sort-Object -Property UserPrincipalName | Select-Object @{E={$_.UserPrincipalName.ToLower()}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment