Friday, September 26, 2014

Stop & Start the Farm Services using powershell script

Get-SPServiceInstance | ? {$_.TypeName -eq "Search Host Controller Service"}

To Stop the Specific Instance ID
Stop-SPServiceInstance -Identity <instance ID>

To Start the Specific Instance ID

Start-SPServiceInstance -Identity <instance ID>

No comments:

Post a Comment