- $ssa = Get-SPEnterpriseSearchServiceApplication
- $ssa.GetProperty("ContinuousCrawlInterval")
The default interval is 15 minutes. You can easily change that to anything else, say 20 in this example:
- $ssa = Get-SPEnterpriseSearchServiceApplication
- $ssa.SetProperty("ContinuousCrawlInterval",20)
No comments:
Post a Comment