Windows – Scheduled task with custom weekly schedule does not run

windows 8windows task scheduler

I have set up a new task in Task Scheduler (on Windows 8) to run a batch file and set the task to run each week day at 7:40 AM.

Weekly schedule

The task never runs (automatically). Next Run Time shows the correct time when the task should run, but when that time arrives the task does not trigger. There are no errors in the log, and the task runs without a problem when I start it manually.

Task list

I have other tasks that run almost identical batch files that are set to run Daily, and those work just fine. I have one other task that is set to run only on week days but at a different time, and that task also never runs automatically.

All these tasks are set to run as SYSTEM. The only apparent difference between the tasks that work and the tasks that do not is the schedule.

Here are the task conditions:

Conditions

The task runs on a desktop computer that is always on AC power. The computer does not sleep (tasks scheduled five minutes before and after this task run just fine).

Why is my scheduled task not starting at the scheduled time?

Best Answer

Even if you set the task to run at 7:40 it might start a half hour earlier or later. The Windows OS decides when it is gonna start the task exactly. I once hat a similar problem , check the conditions tab and unchecked the idle radio button which states that your process should run only if the PC is in idle state, this might solve your problem. Also on the condition tab check the other conditions you have, maybe some of these conditions are blocking your task from starting.

Related Question