If the VS tool does not work, and you do not want to manually configure the Scheduler, you can try using the built-in scheduler that Kudu provides (web application management infrastructure) - https://github.com/projectkudu/kudu/wiki/Web-jobs# scheduling-a-triggered-webjob
To schedule WebJob to start, you need to add the schedule property to the settings.job file. The schedule value is a cron expression that has 6 fields to represent the graph: {second} {minute} {hour} {day} {month} {day of the week} .
To do this, you need to use standard WebApp with "Always On" enabled to make it work.
So, you just add the following to the settings file if you want to run every 5 minutes.
{ "schedule": "* */1 * * * *" }
Sorry for the problems with the tools, this is what I am trying to solve.
Chris Anderson-MSFT
source share