Startup

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, can somebody help me to build a script? I need some my application run at
startup, but i don't want to start them all in one: i want some application
run at startup but one at time. Every application must start only when the
previous is started completly, and not when is still loading.ok?
I hope i was brief.

Thanks.
 
markos said:
Hi, can somebody help me to build a script? I need some my application run at
startup, but i don't want to start them all in one: i want some application
run at startup but one at time. Every application must start only when the
previous is started completly, and not when is still loading.ok?
I hope i was brief.

Use the "start" command with the /wait option:

start /wait prog1
start /wait prog2
start /wait prog3

The "/wait" option causes the interpreter to wait until the program
finishes before processing the next command.

For details on the "start" command, open a command console ("DOS box")
and type:

start /?
 
I don't think that is what markos wants. If that were the case he could just
use the call command.
 
Back
Top