PowerTip: Use PoweShell to Start Service on Remote Machine
Summary: Learn how to use Windows PowerShell to start a service on a remote machine. How can I start a service on a remote machine? To start a service on a local machine:Get-Service -Name bits | Start-serviceBut if you try to use the same technique on a remote machine, it tries to start the service on your local machine:Get-Service ...