Scheduled Jobs during hours of autumn time change

Proper scheduling of future tasks by local time, taking into account time zones and daylight saving time, is a very complex subject. I’ve written about it before from a programming perspective on Stack Overflow here and here. I’ll summarize from a non-programming perspective: Define your recurrence patterns by local time – not UTC. For example, … Read more

Task Scheduler 2.0: Difference between “Stop task if…”

I have no authoritative reference but I have just tested the behavior of multiple different Stop conditions in Task Scheduler on both Windows 8.1, Server 2008 R2 and 2012 R2. They both apply! Whichever stop condition is met first, stops the task. Per trigger stop condition: The Stop task if it runs longer than-condition specified … Read more

Windows Server 2016 scheduled task schedule must be in future

FYI – I have confirmed with Microsoft through a support ticket I opened yesterday that this is a bug. The support tech confirmed it is internally classified as a bug and a patch is being developed. I was given a target date of release of the patch for July/August. This affects both Windows 10 and … Read more

Scheduled job not running to completion; event logged with return code 3762504530

I believe that return code is a generic .NET console app crashed code. The way the job is set up in Task Scheduler is not causing this issue. Check the Application event log on the server for any errors that occurred near the time the job ‘completed’. Those events should give you more information as … Read more

How do I rename a task in Task Scheduled on Windows Server 2008 R2

Congratulations! You’ve come up against a problem that has stumped many a Windows user/admin. No, you cannot rename a task except for exporting, renaming and importing again. Yes, it’s rather silly. Perhaps an enterprising scripter could create a simple PowerShell script that automates this, but until then, you’re stuck with your export/import two-step. Sorry. =( … Read more