Skip to content

Instantly share code, notes, and snippets.

@hansgafriedzal
Last active July 30, 2018 12:42
Show Gist options
  • Save hansgafriedzal/62a780b1cda7520f2c76f06299080975 to your computer and use it in GitHub Desktop.
Save hansgafriedzal/62a780b1cda7520f2c76f06299080975 to your computer and use it in GitHub Desktop.
Get-ADUser -Filter * -Property userAccountControl `
| Where {[Convert]::ToString($_.useraccountcontrol,2).PadLeft(25,'0').substring(23,1) -eq '1'} `
| Select userAccountControl -Unique `
| Sort -Property userAccountControl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment