drblove27 has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to run a perl script from Vista machine, using Task scheduler daily at a set time. As a test script I am running
I tried running this using the action "c:\perl\bin\perl.exe "d:\scripts\test.pl" and no luck.my $fname = "output\.txt"; unless(open(OUTPUT,">$fname")) { exit } print OUTPUT "This worked\n"; close(OUTPUT);
I then put "perl test.pl" in a bat file in the directory "d:\scripts", no luck...
Does anyone have any experience run perl scripts on Vista using Task Scheduler? I would be most appreciative...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Vista Task Scheduler
by BrowserUk (Patriarch) on Apr 12, 2008 at 06:03 UTC | |
|
Re: Vista Task Scheduler
by walto (Pilgrim) on Apr 12, 2008 at 05:38 UTC | |
|
Re: Vista Task Scheduler
by Corion (Patriarch) on Apr 12, 2008 at 12:23 UTC | |
|
Re: Vista Task Scheduler
by tachyon-II (Chaplain) on Apr 12, 2008 at 06:50 UTC | |
|
Re: Vista Task Scheduler
by ikegami (Patriarch) on Apr 12, 2008 at 23:27 UTC | |
by Anonymous Monk on Apr 13, 2008 at 04:49 UTC | |
by ikegami (Patriarch) on Apr 13, 2008 at 06:00 UTC |