in reply to Scheduling a script to run on Windows

Here is one possible way.

create *.bat file with following string:

PATH_TO_YOUR_perl\perl.exe PATH_TO_YOUR_FILE\your_file_name

And place that *.bat into your Sheduler

But i think you can simply tell Windows to open *.pl files with perl.exe (but not your Perl Express). After that you can place this script into your Sheduler.

Replies are listed 'Best First'.
Re^2: Scheduling a script to run on Windows
by Ninth Prince (Acolyte) on Jun 04, 2008 at 05:46 UTC
    Went for the *.bat solution and it worked like a charm. Thanks.