Skip to content

Instantly share code, notes, and snippets.

@thecfguy
Created August 18, 2013 05:18
Show Gist options
  • Save thecfguy/6260011 to your computer and use it in GitHub Desktop.
Save thecfguy/6260011 to your computer and use it in GitHub Desktop.
List out all scheduled task in ColdFusion
<cfscript>
alltask=ArrayNew(1);
taskService=createobject('java','coldfusion.server.ServiceFactory').getCronService();
alltask=taskservice.listall();
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment