Does Windows have an alternative to cron jobs? I'd like to schedule a task to run every morning at 6.
EDIT: I want to do it on the command line for use in a batch script.
|
feedback
|
|
Windows has "Scheduled Tasks", with which you can schedule scripts and programs to run. Microsoft KB Using Scheduled Tasks To open Scheduled Tasks, click Start, click All Programs, point to Accessories, point to System Tools, and then click Scheduled Tasks. To schedule a new task:
| |||||
feedback
|
|
You might also like to look into the 'at' command, which I use fairly often. http://www.ss64.com/nt/at.html :) For example,
Would perform 'run_job' every day at 6. | |||
|
feedback
|
|
SCHTASKS was what I was looking for; I found it. Thanks for the help! | |||
|
feedback
|
|
The command you are looking for is called
| |||
|
feedback
|
|
Try the Windows Task Scheduler (AKA Scheduled Tasks). You'll find it in the Control Panel. | |||
|
feedback
|
|
Use scheduled tasks Start -> All Programs -> Accessories -> System Tools -> Scheduled Tasks It's not as powerful as cron, but it'll get the job done for you. | |||
|
feedback
|
atcommand? – Miles Erickson Mar 30 at 8:48