If I want to run a process (say: KindleGen.exe filename using Process.Start()
) multiple times at the same time (using threads), is that possible?
I guess the real/summarized question is: can i run a process multiple times at the same time by launching it multiple times at the same time from different threads?
will it launch multiple processes or give an error that a process with the same name is already running? are there any special parameters i need to pass to Process.Start()
to make this happen/work?