vote up 1 vote down star

Hi,

I just setup cron on my windows dev system in order to perform an hourly run of a script.

I tried to edit crontab in order to run my script hourly, sadly with no success.

Could anyone pls. drop me the crontab line which will execute script.xy every hour?

flag

I figured it out: 0 * * * * C:\doSomeWork.script Makes the script run every full hour. Sometimes the easy way is the best... ;) thx anyway – KB22 Jul 28 at 8:46

4 Answers

vote up 1 vote down check

I figured it out: 0 * * * * C:\doSomeWork.script Makes the script run every full hour. Sometimes the easy way is the best... ;) thx anyway

link|flag
vote up 0 vote down

Can't ju use the Windows Task Scheduler instead of crontab? A commandline solution would look something like:

at 00:00 /EVERY:M,T,W,Th,F,S,Su yourScript.cmd
at 01:00 /EVERY:M,T,W,Th,F,S,Su yourScript.cmd
...

Notice that you have to schedule a new task for each hour. Anyone got a better soluition for this using the at command?

link|flag
Ok, this won't solve your problem if you are stuck with crontab. Which implementation of cron are you using on windows? – Ola Herrdahl Jul 28 at 8:34
vote up 0 vote down

I'd argue you probably don't want to be using Cron on Windows at all. Instead use a Scheduled Task (accessible through the Control Panel) and select your script.

Alternatively create a Windows service which runs your program hourly. I've never heard of people using Cron for Windows tasks in this way.

link|flag
vote up 2 vote down

If you're using Windows, why not use the built-in Scheduled Tasks (Accessories-System Tools)?

It may not show up immediately in the Wizard, but it is possible to set up tasks to be run hourly. Just add a daily task and then tick the "Open Advanced Properties" checkbox. Then go to the Schedule tab and again click "Advanced".

link|flag
thx for the reply, actually I'm 'forced' to use cron. The customer wants it done this way so I'd have a hard time telling him not to. Anyways, is there a way to achieve this hourly thing within windows crontab? – KB22 Jul 28 at 8:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.