#PSTip Starting and Stopping services on remote computers
Consider the following PowerShell 2.0 command: Get-Service -Name wuauserv -ComputerName Server1 | Stop-Service What do you think is happening here? You get the Windows Update service from Server1 and stop it, right?
Read More