Hi Monks,
I am trying to run this presentation (show.exe) from a browser by calling it from my Perl Script here, but something is not working. Can someone let me know if there is a better way to use perl to call an .exe file from a browser, or to show me what I a doing wrong here?
Thanks a lot!
#!c:/perl/bin/perl.exe -w
use strict;
use CGI;
my $q = new CGI;
print $q->header( "text/plain" );
system "cmd.exe /c show.exe";