How do I create a batch file timer to execute / call another batch through out the day Maybe on given times to run but not to run on weekends ? Must run on system times can also be .cmd to run on xp server 2003
|
|
I did it by writing a little C# app that just wakes up to launch periodic tasks -- don't know if it is doable from a batch file without downloading extensions to support a sleep command. (For my purposes the Windows scheduler didn't work because the apps launched had no graphics context available.) |
||||
|
|
|
I would use the scheduler (control panel) rather than a cmd line or other application. Control Panel -> Scheduled tasks |
||||
|
|
|
The AT command would do that but that's what the Scheduled Tasks gui is for. Enter "help at" in a cmd window for details. |
||
|
|
|
|
Below is a batch file that will wait for 1 minute, check the day, and then perform an action. It uses PING.EXE, but requires no files that aren't included with Windows.
It could be improved upon in many ways, but it might get you started. |
||
|
|
