permalink: spells/working-with-services-in-powershell
tags:
- Application/PowerShell
- OS/Windows/ServicesGet-Service - list all services, or drill down on a particular service.Start-Service -Name $SERVICE / sc.exe start $SERVICE - start $SERVICE.Stop-Service -Name $SERVICE / sc.exe stop $SERVICE - stop $SERVICE.