This is creating little confusion for me. My timer job is scheduled to run between 5 am to 7 am but after a check I found the last run time is 8:32 pm ! I understand this is a daily job that runs but should not run after 7 am. Can someone explain me or is it I have misunderstood the settings?

I observed similar situation in other timer jobs as well.

enter image description here

有帮助吗?

解决方案

Your CentralAdmin might be in a different timezone than your servers.

Why is central admin time different from server time?

其他提示

Try to run this to check if the schedule is right:

Get-SPTimerJob -WebApplication "http://yourWebAppUrl" | select Name, DisplayName,Schedule | where-object{$_.Name -eq "TimeJobName"} | ft -autosize

Myabe someone fired it manually? or maybe is it fired programmatically?

许可以下: CC-BY-SA归因
scroll top