Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Script

Name

Description

Last Modified Date

Download

SearchSetFarmTimeouts.ps1

Updates the farm search timeouts.  In central admin found here: /searchfarmdashboard.aspx

Relates to SharePoint 2010

24/01/2012

None

SearchSetFarmTimeout.ps1
#Script:        :SearchSetFarmTimeouts.ps1
#Description    :Sets the timeouts for the search indexer in the farm
#                :In the Central Admin this cab be found here: /searchfarmdashboard.aspx
#Last modified    :24/01/2012
param (     
        $ConnectionTimeout = 60,    #default in SP is 60
        $AcknowledgementTimeout = 120 #default in SP is 60
        )
$service = [Microsoft.Office.Server.Search.Administration.SearchService]::Service        
$service.ConnectionTimeout = $ConnectionTimeout
$service.AcknowledgementTimeout = $AcknowledgementTimeout
$service.Update()
  • No labels