Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. # Get cmdlets with specific verb
  2. Get-Command -Verb Get
  3.  
  4. # Get cmdlets with specific verb
  5. Get-Command -Noun Service
  6.  
  7. # Get cmdlets that end in "-Service"
  8. Get-Command *-Service
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement