in reply to Executing independent commands in PERL

With Windows, if you don't read results from the program you want to execute into a variable or something, then the easiest way is to use the "start" command. So, something like
system ("start path\to\command");
Normally works quite well. The nice thing about this is that your code only waits for "start" to finish (which occurs almost instantly)