Partial Index Reset of a single content source

Partial Index Reset of a single content source

This script will remove and re-add your content source‘s start addresses.

SharePoint will more or less rebuild the index for these sources, when the next full crawl is started.

$sourceName = "Local SharePoint sites"
$SSA = Get-SPEnterpriseSearchServiceApplication
$source = Get-SPEnterpriseSearchCrawlContentSource -Identity $sourceName -SearchApplication $SSA
$startaddresses = $source.StartAddresses | ForEach-Object { $_.OriginalString }
$source.StartAddresses.Clear()
ForEach ($address in $startaddresses ){ $source.StartAddresses.Add($address) }

Similar Post

Blank page when you visit web site sharepoint2010

When you use a fully qualified domain name (FQDN) or a custom host header to visit a Microsoft SharePoint Server 2010 Web site or a Microsoft SharePoint Foundation 2010 Web site from the server that is hosting the Web site, you receive a blank page.

Note You only receive a blank page if you try to visit the Web site directly from the server. If you visit the Web site from a client computer, you can view the Web site.

Cause :

This problem occurs when the Web site uses Windows Integrated Authentication and the Web site has a name that is mapped to the local loop back address.

Solution :

To work around this problem, disable the loop back check or specify host names.