Let's consider this throwback Thursday. A couple of years ago, I posted this " PowerShell to Rebalance Crawl Store DBs in SP2013 ". As a side note, I mentioned the following PowerShell to leverage the CrawlLog object for viewing some Crawl Store level statistics about crawled documents, such as the " Document Count ". For example:
$crawlLog = New-Object Microsoft.Office.Server.Search.Administration.CrawlLog $SSA
$dbHashtable = $crawlLog .GetCrawlDatabaseInfo()
$dbHashtable .Keys Guid --...(read more)
↧