dinsdag 14 juni 2011

PowerShell: Restart OWS Timer met PowerShell

$farm = Get-SPFarm
$farm.TimerService.Instances | foreach {$_.Stop();$_.Start();}