To verify services that are running, run the following cmdlet:


Get-Service -ComputerName RemoteComputerName | Where Status -eq "Running" | Out-GridView


To verify services that are stopped, run the following cmdlet:


Get-Service -ComputerName RemoteComputerName | Where Status -eq "Stopped" | Out-GridView