tags:

views:

175

answers:

1

How would I go about setting up a PHP cron job in IIS?

+3  A: 

Cron jobs are usually not executed via http servers, so use the Task Scheduler to execute the php interpreter and provide the physical path to your php script as a commandline argument.

ThiefMaster
Thanks for your response, How would I use the Task Scheduler? Sorry I'm not at all versed with IIS.
Probocop
@Probocop You need to create new task in "Control Panel"|"Task Scheduler"...
mosg
That's great, thanks! One question though, the only options are for daily, weekly, monthly, one time only, when computer starts, and when I log on. How would I go about setting it to run every minute?
Probocop