SharePoint 2013: Best/Safest way to restart the SharePoint Timer Service ?

Hi Forum,

What is the best and safest way to restart the SharePoint Timer Service in SharePoint 2013?

A) PowerShell Multiple Servers:
$farm = Get-SPFarm
$farm.TimerService.Instances | foreach { $_.Stop(); $_.Start(); }

B) PowerShell Single Server:
restart-service sptimerv4

C) CMD:
net stop SPTimerV4
net start SPTimerV4

Since my environment consists of multiple servers, I feel that the first option (A) is easier and more practical - But, Is it safe and effective?

July 31st, 2015 5:17pm

What is the reason you're needing to restart the timer service? At any rate, it doesn't matter _how_ you do it, as long as you're not going to Task Manager and killing owstimer.
Free Windows Admin Tool Kit Click here and download it now
July 31st, 2015 5:31pm

Trevor, We are using some custom components and as a part of upgrading these components, We need to restart the SharePoint Timer service on all servers.



So, I was wondering what is the best/safest way to do it?



I have always used CMD:
net stop SPTimerV4
net start SPTimerV4



One by one on every server and never had issue - Shall I do the same this time too to avoid any issues or shall I try something new?


July 31st, 2015 5:56pm

All of the ways you originally asked about are valid and safe.
Free Windows Admin Tool Kit Click here and download it now
July 31st, 2015 5:58pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics