http://qs321.pair.com?node_id=565854


in reply to Backgrounding a scheduled task

You could try having a very small perl script which simply ran:
system(1,"/path/to/real/script.pl");
On Windows, the leading 1 should cause the script to run in the background, and your foreground script can immediately exit. Untested, but worth a try anyways...