Steps
- Start your windows PowerShell on your computer.
- Right click and select Run as administrator option.
- Paste the below script on the PowerShell window and click the enter button.
- Check your SharePoint site Feature will activated successfully
- Checks whether the crawl status is set to “Idle”
- If the content source is currently involved in a crawl activity, stop the activity and wait until the status changes back to Idle
- If the content source is Idle, then start a full crawl
- Get-SPEnterpriseSearchCrawlContentSource -SearchApplication "Search Service Application" | ForEach-Object {
- if ($_.CrawlStatus -ne "Idle")
- {
- Write-Host "crawl stooping currently for content source $($_.Name)..."
- $_.StopCrawl()
- do { Start-Sleep -Seconds 1 }
- while ($_.CrawlStatus -ne "Idle")
- }
- Write-Host "Full crawl started for content source $($_.Name)..."
- $_.StartFullCrawl()
- }
- Get-SPEnterpriseSearchCrawlContentSource -SearchApplication "Search Service Application" | select Name, CrawlStatus

Gowtham RajamanickamPosted Apr 12, 2016, 3:09 AM
I solved my killing issue..
Gowtham RajamanickamPosted Apr 12, 2016, 3:09 AM
amazing my article helped me this time
Gowtham RajamanickamPosted Apr 12, 2016, 3:09 AM
wow
Gowtham RajamanickamPosted Apr 6, 2016, 4:52 AM
Thanks @Vijay S
Vijay SPosted Jun 17, 2015, 9:13 AM
Good one