Powershell is powerful tool that can be utilized to manage any of the latest Windows operating systems such as Server 2012 and Windows 10.
In this example, we show you how to stop or start Windows services using powershell.
1) Open powershell command-let by typing Powershell in your windows search box and opening powershell console or type powershell in your cmd commandlet
2) Type
Get-Service | Stop-Service in powershwell prompt to stop the service.
For example, to stop the Printer Spooler service type:
Get-Service Spooler | Stop-Service
Top the serive, type
Get-Service Spooler | Start-Service
