cfschedule pause before launch ?
Hi,
At the moment, I'm working on a project where we want to save scheduled tasks in an autoConfig file, launched at each reboot of the server.
That allows developers to add scheduled tasks without creating them through the CF Admin console.
We can create the tasks with the code :
<cfschedule
action = "update"
task = "taskName"
operation = "HTTPRequest"
startDate = "Jan 01, 2010"
startTime = "08:00"
url = "http://website/batchName.cfm"
interval = "Weekly"
username = "admin"
password = "admin">
If we add a cfschedule tag with "pause" action after this one, the tasks will run because the date is in the past.
Do you have any idea how to schedule a weekly task without launch at creation ?
Thanks for your help.
David.
