In Windows 7, how to schedule a task which repeats every hour, every day but within a time range. I have a script which needs to run everyday from 08:00 to 20:00 in 1 hour interval.Could not find any solution even after googling.Anybody tried something similar? Any hints?
migrated from stackoverflow.com Oct 11 '11 at 13:23
This question came from our site for professional and enthusiast programmers.
|
The Task Scheduler does this all by itself... When you add a trigger to tell the task when to run, it's available as an advanced option.
| |||||
|
feedback
|
|
The 12 hour duration each day is supported in the UI, for others you need to use the command line. You set the recur to daily and the repeat + duration for how often and for how long you want the tasks to run during that day.
The trigger summary ends up as:
| |||||
feedback
|
|
You could look into the "schtask" command on the command promt (if you type help on command prompt you will see it listed). Assuming I understand your question correctly, this is what you want to type:
| ||||
|
feedback
|


