C# Launcher program(ConsoleApp) that launches other executables
- by Agile Noob
I've written a launcher program that fires off a given number of executables, with the following code:
Process.Start(strPath2EXE);
The problem I'm running into is it seems I'm being limited to launching only about four copies of the executable. Is there a different way I can launch the executables without this limit? I'm hoping to run 10+…