Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

How we do a full crawl in Sharepoint Foundation 2010?

share|improve this question

2 Answers

up vote 5 down vote accepted

Checklist inside Central Administration:

  • Services on Server -> SharePoint Foundation Search is started.
  • Manage Web Applications -> Highlight SharePoint 80 -> User Policy -> Set crawl account to full read.
  • Manage Content Content Datases -> WSS_Content -> Search Server -> Select the Search Server for Foundation 2010
  • Monitoring -> Job Definitions -> SharePoint Foundation Search Refresh -> Run Now

This does your index reset and full crawl.

share|improve this answer

Or via Powershell

GEt all data about your Search Service via

Get-SPSearchService | select *  

after this you shall find something like JobDefinition : {NAME}

or go for

(Get-SPSearchService).jobdefinitions | select *

which shall give you all details about TimerJobs associated with Search. and simple use

Set-SPTimerJob "<NAME>"
   -Schedule "daily between 01:00:00 and 04:00:00"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.