in reply to Executing windows batch files via System

From perldoc on system:
"if LIST is an array with more than one value, starts the program given by the first element of the list with arguments given by the rest of the list."

I've never used system in this syntax (using the return value) but it looks like its just running the program "1" and passing everything else as an argument. Try this:
#!c:/Perl/bin/perl.exe print "Content-type: text/html\n\n"; print "Created Installer 2: "; system('c:\program\ie\makeinstall', '2');

Replies are listed 'Best First'.
Re^2: Executing windows batch files via System
by ikegami (Patriarch) on Apr 25, 2007 at 23:39 UTC
    system(1, ...) is a Windows feature to run a program asynchronously. Kinda like fork+exec for a system without fork.
      Ah, interesting to know. See, you learn something new everyday!