Get-Service

Get-Service | ? {$_.Status -eq "Running"} 
Get-Service | ? {$_.Status -eq "Running"} | select -First 2 |fl

Last updated