Skip to content

Instantly share code, notes, and snippets.

@h3nryza
Created July 17, 2018 17:45
Show Gist options
  • Save h3nryza/fd41d5d183ff0eb24b85a20699a39a89 to your computer and use it in GitHub Desktop.
Save h3nryza/fd41d5d183ff0eb24b85a20699a39a89 to your computer and use it in GitHub Desktop.
Powershell get users of a local computer group
Get-CimInstance Win32_GroupUser | where {$_.GroupComponent -like "*admini*"} |select -ExpandProperty PartComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment