Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to run a task in interval using Windows Task Scheduler in Windows Server 2008?

I have a task (task.exe) that should start running then it may take between 1-4 hours then it should wait for the interval of always 30 minutes after it has ended then start again.

For example, starts at 1am takes 1 hour then waits for 30 minutes then starts again at 2:30 then takes 2 hours so waits for 30 minutes and starts again at 5am.

How would that be possible with Windows Task Scheduler?

Thanks,

share|improve this question
You can do that using one-time scheduling and VBScript. i.e.: Schedule the script only once on first day to run task.exe and wait for it to finish. Then the script create another one-time schedule to run the same script for the next schedule. Meaning that the script executes the actual program and reschedule itself for the next run. – Jay Aug 15 '12 at 18:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.