From the post the other day, to dump the CF Schedule, try using
<cflock name="serviceFactory" type="exclusive" timeout="10">
<cfscript>
factory = CreateObject("java", "coldfusion.server.ServiceFactory");
cron_service = factory.CronService;
ServicesList = cron_service.listALL();
</cfscript>
<cfdump var="#ServicesList#">
</cflock>
1 Comments to “To Dump the CF Schedule”
How would run a given cf scheduled job and also to check its status (start/running/done)?
-Pat


