Summary: Learn how to use Windows PowerShell to get specific service information.
How can I use Windows PowerShell to find information about services, if I do not want to include any service
that has a name that begins with the letter “s”?
Use the Exclude parameter from the Get-Service cmdlet, for example:
gsv -Exclude s*
Note Gsv is an alias for the Get-Service cmdlet.