Powershell Script to Start SharePoint Timer Service

  1. $LogTime = Get-Date -Format yyyy-MM-dd_hh-mm  
  2. $LogFile = ".\StartSPTimerServicePatch-$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.   
  34. Function StartSPTimerServicesInFarm([Microsoft.SharePoint.Administration.SPFarm]$farm)  
  35. {  
  36.  Write-Host ""  
  37.  foreach($server in $farm.Servers)  
  38.      {  
  39.   foreach($instance in $server.ServiceInstances)  
  40.           {  
  41.                # If the server has the timer service then stop the service  
  42.                  if($instance.TypeName -eq $timerServiceInstanceName)  
  43.                  {  
  44.                    [string]$serverName = $server.Name  
  45.    
  46.                    Write-Host "Start " $timerServiceName " service on server: " $serverName -fore yellow  
  47.                      
  48.                     $service = Get-WmiObject -ComputerName $serverName Win32_Service -Filter "DisplayName='$timerServiceName'"  
  49.                    $serviceInternalName = $service.Name  
  50.                    sc.exe \\$serverName start $serviceInternalName > $null  
  51.   
  52.                      # Wait until this service starts running  
  53.       write-host "Waiting for " $timerServiceName " service on server: " $serverName " to be started" -fore yellow  
  54.                      do  
  55.           {  
  56.                Start-Sleep 1  
  57.                 Write-Host -foregroundcolor DarkGray -NoNewLine "."  
  58.                $service = Get-WmiObject -ComputerName $serverName Win32_Service -Filter "DisplayName='$timerServiceName'"  
  59.           }  
  60.          while ($service.State -ne "Running")  
  61.      write-host $timerServiceName " service on server: " $serverName " started successfully" -fore green             
  62.                     break;  
  63.                  }  
  64.           }  
  65.      }  
  66.    
  67.      Write-Host ""  
  68. }  
  69.   
  70. StartSPTimerServicesInFarm $farm  
  71.   
  72. stop-transcript