Hi All, Wondering if anyone has used Win32::Process to call another perl script?
I can get it to run notepad as per the usage doc, but the following, while not erroring out and printing the process ID as requested, doesn't execute the other script as it should (i.e. it doesn't work as it does when run on it's own) - any caveats anyone know of? Thanks, Mark -- use Win32::Process; Win32::Process::Create($ProcessObj, "c:\\perl\\bin\\perl.exe","c:\\perl\\work\\loop_test.pl", 0, NORMAL_PRIORITY_CLASS, ".")|| die "probs\n";; $proc_id=$ProcessObj->GetProcessID(); print "i'm $proc_id"; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]