in reply to Re: (4) Launch background perl script from CGIin thread Launch background perl script from CGI
I believe the 'quick-and-dirty' way to run a process in the background on a Win32 platform is:
system('start /b yourcommand');
HTH