Computer Hope

Microsoft => Microsoft DOS => Topic started by: Steve101 on October 27, 2004, 07:52:56 AM

Title: batch files
Post by: Steve101 on October 27, 2004, 07:52:56 AM
When running  a batch file that is supposed to run 3 executeables, if I have them in a list, only the first one will run, then it says 'press key to continue' but it will not run the next 2 executables.... any ideas?
Title: Re: batch files
Post by: Dusty on October 27, 2004, 04:57:13 PM
Please post the relevant section of your .bat file and indicate what OS you are using
Title: Re: batch files
Post by: someone who cares on October 28, 2004, 01:50:05 AM
Put this string into your batch:-
Start *.exe & *.exe & *.exe
Where as * is the name of the executable files you want to launch.