Provide a list of all scheduled tasks for the CF application server
<head>
<title>Scheduled Tasks</title>
</head>
<body>
<cfobject type="JAVA" action="Create" name="factory" class="coldfusion.server.ServiceFactory">
<cfset allTasks = factory.CronService.listAll()/>
<cfloop index="i" from="1" to="#ArrayLen(allTasks)#">
<cfdump var="#allTasks[i]#" />
</cfloop>
</body>
</html>