Cloud & Web Interfaces

Scheduled Task Status Summary

Create a function that shows the status of all your ScheduledTasks.

In[1]:=
Click for copyable input
DisplayTasks[] := Module[{tasks}, tasks = ScheduledTasks[]; Grid[Take[ Reverse@SortBy[ Map[{Style[ScheduledTaskInformation[#, "Name"], 14, FontFamily -> "Source Sans Pro"], Style[ScheduledTaskInformation[#, "Status"], 14, FontFamily -> "Source Sans Pro"], NextScheduledTaskTime[#]} &, tasks], Last], 10], Alignment -> {Left, Top}] ]

Deploy an AutoRefreshed object that will display and update the information every hour.

In[2]:=
Click for copyable input
CloudDeploy[AutoRefreshed[DisplayTasks[], "Hourly"], "TaskDisplay"]
Out[2]=

Related Examples

de es fr ja ko pt-br ru zh