0

We are needing a server that is solely responsible for executing various data manipulation scripts based on different events or triggers - previously when we were using Debian linux we scheduled it all with cron jobs. Is the windows task scheduler as robust as cron jobs? If not what alternatives are there. We use MySQL not MSSQL so their task scheduler is out of the question.

mfinni
  • 36,144
  • 4
  • 53
  • 86
kozllx
  • 1

3 Answers3

1

Windows' Task Scheduler is perfectly fine for the job of scheduling tasks; of course, what the tasks can actually do depends on the programs/scripts/commands you ask it to run.

Massimo
  • 70,200
  • 57
  • 200
  • 323
0

Task Scheduler works just fine. GUI or cmd-line, too. And if you're really tied to GNU cron, you can install Cygwin.

If you have to do complex things (that even cron can't handle), you'll need 3rd-party commercial software. I mean things like handling multiple simultaneous runs, throttling, multiple machines, workflows - you'll need something expensive.

mfinni
  • 36,144
  • 4
  • 53
  • 86
0

Take a look at the Windows Task Scheduler. It has evolved significantly over the years and now supports event triggers such as
- time,
- logon/off, - user connect/disconnect
- workstation lock/unlock
- system startup/idle
- particular Windows event log items

uSlackr
  • 6,412
  • 21
  • 37