I need to run MyProg.exe every 5 minutes. How do I do it?

link|improve this question

66% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Go into Start>All Programs>Accessories>System Tools>Scheduled Tasks. Use the "Add a Scheduled Task" wizard, and browse to your program if it is not listed. Choose "one time only" when prompted for how often you want to to do it (you will change this in a moment). At the end of the wizard, click "Open advanced properties for this task when I click Finish".

Once you complete this, you will be able to go to the Schedule tab>Advanced and set the job to go off every 5 minutes.

enter image description here

I could not find a way to make this go longer than 9999 hours, but you can do it from a command line using Schtasks:

http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/schtasks.mspx?mfr=true

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.