Search FarmTimeouts

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()

CodeMonkey Software is a division of JCHMedia www.jchmedia.com