How can so set up scheduled tasks so several run with no gap?

D

Donna YaWanna

I have 5 programs that I need to run. I want to run like this
program1
program2
program3
program4
program5
program1
program2
etc.
How can I set up scheduled tasks so that when one program finishes the next
one starts? The run time varies a lot. Program1 might run 5 minutes this
time, 30 minutes the next. I want no gap.
 
T

Torgeir Bakken \(MVP\)

Donna said:
I have 5 programs that I need to run. I want to run like this
program1
program2
program3
program4
program5
program1
program2
etc.
How can I set up scheduled tasks so that when one program finishes the next
one starts? The run time varies a lot. Program1 might run 5 minutes this
time, 30 minutes the next. I want no gap.
Hi,

You can do all from e.g. a batch file, like this:

--------------------8<----------------------
@echo off

:Top
start /WAIT program1
start /WAIT program2
start /WAIT program3
start /WAIT program4
start /WAIT program5
goto Top
--------------------8<----------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top