in reply to How to continue a script after using a system call without the system call has been closed

use Win32::Process - It's standard with ActiveState Perl. e.g....

use Win32::Process; my $Notepad; Win32::Process::Create($Notepad,"D:\\winnt\\system32\\notepad.exe","no +tepad test.txt",0,CREATE_NEW_CONSOLE,".")|| die ErrorReport();

$code or die
$ perldoc perldoc
  • Comment on Re: How to continue a script after using a system call without the system call has been closed
  • Download Code