I'm looking for a way to make Perl kill all firefox.exe processes on Win32, and not give an error if no process exists. I'm currently using:
system('taskkill /F /IM firefox.exe');
which throws up a big "ERROR: No such process found", when firefox wasn't present.