in reply to One Script From Another

Win32::Process using the DETACHED_PROCESS flag should do what you want.
Win32::Process::Create($ProcessObj, "c:\\perl\\bin\\perl.exe", "perl script.pl", 0, DETACHED_PROCESS, ".")|| die Win32::FormatMessage(Win32::GetLastError());

Replies are listed 'Best First'.
Re: Re: One Script From Another
by Red_Dragon (Beadle) on Aug 27, 2003 at 17:47 UTC
    The code snippet worked beautifully. Many thanks, your investment is not wasted.