I have the following commands in a batch file:
"C:\MI2\Stream\bin\Debug\Stream.exe" 19 "C:\MI2\Stream\bin\Debug\Stream.exe" 20 "C:\MI2\Stream\bin\Debug\Stream.exe" 21 "C:\MI2\Stream\bin\Debug\Stream.exe" 23 "C:\MI2\Stream\bin\Debug\Stream.exe" 25
I am trying to execute 5 instances of the application I created, passing them to another parameter. My goal is that when I run this batch file, it launches 5 instances of this application, loading the user interface component for each. In the end, I will make it more elegant and put a wrapper around it, but for now I just want them to run at the same time.
The problem is that when I run this batch file, it executes the first line, loading the user interface. It. It does not go to the second line. Thoughts?
Edit to add - I could do this from separate batch files, but I would like to launch one click. Scott
source share