Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Find Running Services on Your Workstation

$
0
0

Summary: Use Windows PowerShell to easily find all running services on your workstation.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find what services are running on my workstation?

Hey, Scripting Guy! Answer Use the Get-Service cmdlet, filter the status on the word Running, and select the display name of the services,
           for example:

gsv | where status -eq 'running' | select displayname

Note  gsv is an alias for the Get-Service cmdlet.


Viewing all articles
Browse latest Browse all 3333

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>