Working with paused search index
When you want to know what search is up to, check it out with the management shell and these handy hints I copied in from Microsoft Technet – https://technet.microsoft.com/en-us/library/dn745901(v=office.15).aspx Run this
1 2 3 |
$ssa = Get-SPServiceApplication -Name "Search Service Application" $ssa.IsPaused() -ne 0 |
if it returns false, the search … Read More