tags:

views:

68

answers:

2

I have as many as ten Perl scripts to run on a Windows server. Is there something better than opening a new prompt for each script and having ten windows open on your server?

+4  A: 

You could run them as services. Look into Win32::Daemon.

ldx
Nice way if you develop a new application or can change the code.
Konerak
+2  A: 

Run each program in the background. For this, you only need one prompt window. Use the start command.

daxim
Good QND hack without modifying any code.
Konerak