Unprovisioning Status in Search Service Application (Enterprise Search)

Environment: SharePoint Server 2013 On-Premise Case: [ERROR STOPPING] Actually, a lot of issue about “Search Service Application” i...

logo - afahru.com

Environment:
SharePoint Server 2013 On-Premise

Case:
[ERROR STOPPING]
Actually, a lot of issue about “Search Service Application” in SharePoint 2013 On-Premise. I’ll share to you by part, in this part is the first thing reason why I love SharePoint.
“Error Stopping”, this status can check via Central Administration > System Settings > Manage services on server > SharePoint Server Search.

Let’s make status “Started”. How? Check step below:
Open SharePoint 2013 Management Shell and type:
Get-SPServiceInstance -Identity <GUID> #Please use your GUID Search Service Application#

unprovisioning - afahru.com

Status “Unprovisioning”. Ok, use these cmdlets:
$service = Get-SPServiceInstance -Identity <GUID>
$service.provision()
$service.update()

Then use this:
Start-SPServiceInstance -Identity <GUID>
Hopefully, status back to started 😊

You Might Also Like

0 comments