Summary: Use Windows PowerShell to find running services.
How can I use Windows PowerShell to quickly produce a sortable list of running services on my computer?
Use the Get-Service cmdlet to return the services, and the Out-GridView to produce a sortable list:
gsv | ogv
Note gsv is an alias for Get-Service, and ogv is an alias for Out-GridView.