Created
June 4, 2019 16:02
-
-
Save defilerc/64f522ec7a407c6365a45f81bc982586 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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