Skip to content

Instantly share code, notes, and snippets.

@defilerc
Created June 4, 2019 16:02
Show Gist options
  • Save defilerc/64f522ec7a407c6365a45f81bc982586 to your computer and use it in GitHub Desktop.
Save defilerc/64f522ec7a407c6365a45f81bc982586 to your computer and use it in GitHub Desktop.
# Get cmdlets with specific verb
Get-Command -Verb Get
# Get cmdlets with specific verb
Get-Command -Noun Service
# Get cmdlets that end in "-Service"
Get-Command *-Service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment