Running Services from PowerShell

September 14, 2016

I wanted to obtain a list of the running services on my windows machine. This can be done from PowerShell with the command:

Get-Service | Where-Object {$_.status -eq "running"}