Powershell Script to Stop SharePoint Timer Service in all Servers in the Farm

  1. $LogTime = Get-Date -Format yyyy-MM-dd_hh-mm  
  2. $LogFile = ".\StopTimerServicePatch-$LogTime.rtf"  
  3.  
  4. # Add SharePoint PowerShell Snapin  
  5.   
  6.   
  7. if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null ) {  
  8.     Add-PSSnapin Microsoft.SharePoint.Powershell  
  9. }  
  10.   
  11. $scriptBase = split-path $SCRIPT:MyInvocation.MyCommand.Path -parent  
  12. Set-Location $scriptBase  
  13.  
  14.  
  15. #Deleting any .rtf files in the scriptbase location  
  16. $FindRTFFile = Get-ChildItem $scriptBase\*.* -include *.rtf  
  17. if($FindRTFFile)  
  18. {  
  19.  foreach($file in $FindRTFFile)  
  20.   {  
  21.    remove-item $file  
  22.   }  
  23. }  
  24.   
  25.   
  26. start-transcript $logfile  
  27.   
  28. $global:timerServiceName = "SharePoint 2010 Timer"  
  29. $global:timerServiceInstanceName = "Microsoft SharePoint Foundation Timer"  
  30.  
  31. # Get the local farm instance  
  32. [Microsoft.SharePoint.Administration.SPFarm]$farm = [Microsoft.SharePoint.Administration.SPFarm]::get_Local()  
  33. Function StopSPTimerServicesInFarm([Microsoft.SharePoint.Administration.SPFarm]$farm)  
  34. {  
  35.  Write-Host ""  
  36.  foreach($server in $farm.Servers)  
  37.      {  
  38.   foreach($instance in $server.ServiceInstances)  
  39.           {  
  40.                # If the server has the timer service then stop the service  
  41.                  if($instance.TypeName -eq $timerServiceInstanceName)  
  42.                  {  
  43.                    [string]$serverName = $server.Name  
  44.    
  45.                    Write-Host "Stop " $timerServiceName " service on server: " $serverName -fore yellow  
  46.                      
  47.                     $service = Get-WmiObject -ComputerName $serverName Win32_Service -Filter "DisplayName='$timerServiceName'"  
  48.                    $serviceInternalName = $service.Name  
  49.                    sc.exe \\$serverName stop $serviceInternalName > $null  
  50.   
  51.                      # Wait until this service has actually stopped  
  52.       write-host "Waiting for '$timerServiceName' service on server: " $serverName " to be stopped" -fore yellow  
  53.                      do  
  54.           {  
  55.                Start-Sleep 1  
  56.                 Write-Host -foregroundcolor DarkGray -NoNewLine "."  
  57.                $service = Get-WmiObject -ComputerName $serverName Win32_Service -Filter "DisplayName='$timerServiceName'"  
  58.           }  
  59.          while ($service.State -ne "Stopped")  
  60.      write-host " '$timerServiceName' service on server: " $serverName " stopped successfully" -fore green             
  61.                     break;  
  62.                  }  
  63.           }  
  64.      }  
  65.    
  66.      Write-Host ""  
  67. }  
  68.   
  69. StopSPTimerServicesInFarm $farm  
  70.   
  71. Stop-transcript