in reply to How do I start perl without having a "cmd.exe" window
Or just change /MIN to /B :
sleep5.pl: #!/usr/bin/perl use strict; sleep 5; exit; nowin.pl: #!/usr/bin/perl use strict; `start /b sleep5.pl`; exit; [download]