shan_emails has asked for the wisdom of the Perl Monks concerning the following question:
#fexe.pl #-------- use Win32; use Win32::OLE; use OLE; Win32::MsgBox ("\n Working first exe\n"); while(1){}
#sexe.pl #-------- use Win32; use Win32::OLE; use OLE; Win32::MsgBox ("\n Working second exe\n"); while(1){}
#exeExecute.pl #-------------- @exe=('D:\\fexe.exe','D:\\sexe.exe'); foreach my $exe (@exe){ chdir "D:\\"; system(1, "$exe"); # here 1 for don't wait for next line to execut +e } print "over";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How can visible the exe's when its running
by Anonymous Monk on Dec 11, 2008 at 11:57 UTC |