Hi @Snehal Sutar ,
Suspends a search service application, pausing all crawls and search operations, to perform a task such as system maintenance:
$ssa = Get-SPEnterpriseSearchServiceApplication -Identity MySSA $ssa | Suspend-SPEnterpriseSearchServiceApplication
Steps to suspension of search service applications:
- Verify that the user account that is performing this procedure is a member of the Farm Administrators group.
- Start a SharePoint Management Shell on one of the servers in the farm.
- At the Microsoft PowerShell command prompt, type the following command(s) to find out if the Search service application is paused. PowerShellCopy
If this command returns False, the Search service application is running. If this command returns True, the Search service application is paused.$ssa.IsPaused() -ne 0
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.