Andrew Mansfield wrote:
>Hopefully this isn't too off topic here, but I'm interested to
> find out if anyone can suggest the best way to run a small perl
> script at regular intervals (e.g. every 15 minutes) during the
> weekdays on a Windows server similar to what you can do with
> cron on Unix/L
Use soon.exe, a utility from Microsoft to do just that. It is available off
a Resource Kit or for free if you poke around MS's site. I use it to run a
script every hour, by calling soon from within the script to reschedule
itself.
ie my $reschedule = `c:\\soon.exe 3600 c:\\scripts\\sieb_srv.bat`;
Actually Andrew, if you like cron and prefer that to "Scheduled Tasks" and
"AT" you could always install cygwin. http://www.cygwin.com/
With Cygwin you get an editable crontab with the added bonus of having a
real shell and Unix/Linux utilites.
Cheers,
Carter.
> -Original Message-
Hi:
Both AT and Scheduled Tasks are able to do this, at
least in Win2k. You didn't specify your OS...
With Scheduled Tasks, just open the task, click on the
"Schedule" tab, schedule it "Daily", and then click
the "Advanced" button. Check off "Repeat Task" and
fill in the values in the boxes belo
Around Wed,Feb 26 2003, at 11:40, Andrew Mansfield, wrote:
> Hopefully this isn't too off topic here, but I'm interested to find out if
> anyone can suggest the best way to run a small perl script at regular
> intervals (e.g. every 15 minutes) during the weekdays on a Windows server
> similar to w
Actually its not Advanced Tab, I mean to say in the Schedule tab there is an
Advanced button. Click that and I feel you can do what you wanted to do.
-Original Message-
From: Andrew Mansfield [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 26, 2003 12:41 PM
To: [EMAIL PROTECTED]
Subjec
In the "Scheduled Tasks" you have an advanced tab where in you can mention
the how many times or interval that you can repeat.
See if it helps.
-Original Message-
From: Andrew Mansfield [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 26, 2003 12:41 PM
To: [EMAIL PROTECTED]
Subject: Ru