RE: Windows Background Process

2001-06-28 Thread Stout, Joel R
e 28, 2001 1:59 PM To: '[EMAIL PROTECTED]' Subject: RE: Windows Background Process I have this snippet of code that I picked up from "Learning Perl on Win32 Systems" (O'Reilly) that may be helpful. For more info, check the Win32::Process module. As a Perl rookie myself, I r

RE: Windows Background Process

2001-06-28 Thread murphy, daniel (BMC Eng)
I have this snippet of code that I picked up from "Learning Perl on Win32 Systems" (O'Reilly) that may be helpful. For more info, check the Win32::Process module. As a Perl rookie myself, I really can't explain it - I just know it works. ;-) use Win32::Process; Win32::Process::Create($Process,

Re: Windows Background Process

2001-06-27 Thread Me
> I need to start an external program from my perl > script. This program will need to run in the > background so my script can continue doing other > things. It also still needs to notify the program > when it terminates. > > I would appreciate any help on how I would do this. > My environmen