batch file [executing EXEs]
Hi all! i'm trying to make a. BAT file that works like that: c:\winnt\. . . \program1. exe c:\winnt\. . . \program2. exe but when i run the bat file it doesn't run the program2. exe while program1.
Hi all!
i'm trying to make a .BAT file that works like that:
------------------
"c:\winnt\...\program1.exe"
"c:\winnt\...\program2.exe"
------------------
but when i run the bat file it doesn't run the program2.exe while program1.exe is running. I'd like it ran both program at the same time.
how to do that?
thanks a lot!
i'm trying to make a .BAT file that works like that:
------------------
"c:\winnt\...\program1.exe"
"c:\winnt\...\program2.exe"
------------------
but when i run the bat file it doesn't run the program2.exe while program1.exe is running. I'd like it ran both program at the same time.
how to do that?
thanks a lot!
Participate on our website and join the conversation
This topic is archived. New comments cannot be posted and votes cannot be cast.
Responses to this topic
Quote:Hi all!
i'm trying to make a .BAT file that works like that:
------------------
"c:\winnt\...\program1.exe"
"c:\winnt\...\program2.exe"
------------------
but when i run the bat file it doesn't run the program2.exe while program1.exe is running. I'd like it ran both program at the same time.
how to do that?
thanks a lot!
hmmm
that is an interesting question
i am not sure that you can do that
it is kind of the nature of a script
one thing completes and then next thing runs until it is done
you should try learning some visual basic
that would surely be able to do it
i'm trying to make a .BAT file that works like that:
------------------
"c:\winnt\...\program1.exe"
"c:\winnt\...\program2.exe"
------------------
but when i run the bat file it doesn't run the program2.exe while program1.exe is running. I'd like it ran both program at the same time.
how to do that?
thanks a lot!
hmmm
that is an interesting question
i am not sure that you can do that
it is kind of the nature of a script
one thing completes and then next thing runs until it is done
you should try learning some visual basic
that would surely be able to do it
Quote:Do it this way:
start "c:\winnt\...\program1.exe"
start "c:\winnt\...\program2.exe"
cool
ya learn something new everyday
start "c:\winnt\...\program1.exe"
start "c:\winnt\...\program2.exe"
cool
ya learn something new everyday