05 January,2013 by Tom Collins
Question : How do you stop and start Windows Services with Powershell?
Answer: Working with Windows services and Powershell is easy using the cmdlets : Get-Service ,Stop-Service,Start-Service,Restart-Service
The examples show two different approaches to stopping and starting Windows Services. The long way and the short way.
--check the service status $svc = Get-Service ‘SQLAgent$MyInst1’ $svc.status --The long way $svc = Get-Service ‘SQLAgent$MyInst1’ $svc.Stop() $svc.Start() --The short way Stop-Service 'SQLAgent$MyInst1' Start-Service 'SQLAgent$MyInst1' --Restart the service Restart-Service 'SQLAgent$MyInst1'
SQL Server - SQL Server Restart with Powershell - SQL Server DBA
This is only a preview. Your comment has not yet been posted.
As a final step before posting your comment, enter the letters and numbers you see in the image below. This prevents automated programs from posting comments.
Having trouble reading this image? View an alternate.
Posted by: |