tags:

views:

197

answers:

4

I want to know if there is an equivalent cron in Windows and how I can use it programmatically using PHP.

+7  A: 

Windows has the Scheduled Tasks control panel applet (or management console plug-in on later versions of Windows) but you can also access it via schtasks.exe if you want to automate it from the command line.

In addition, you can also use at from the command line to schedule a task.

paxdiablo
+2  A: 

Need to be in shell/bash?

Windows have the 'tool' that you could put tasks to run in a given time.

Task Scheduler

Try to see this how-to: HERE

Cheers

Castanho
+1  A: 

This link my friend has everything you need to run cron equivalent in Windows http://drupal.org/node/31506

Pasta
A: 

You can try PHPCron

Adrian