Change webjob from on-demand schedule

We have an azure webjob that has been deployed on demand. Is there a way to change this to run on a schedule without redeploying?
Not much information about this.

I tried to create a new schedule collection, for example this, and add a task to start an existing webjob, but that didn't seem to work.

I prefer to do this on the GUI portal, but if this is not possible, I will do it in powershell (if possible).

(Also, if it can only change through redistribution, I need to know this, and it effectively answers the question)

+4
source share
3 answers

, , . , , , ( ) -. " ", .

+2

( ) webjob, settings.job - :

{"schedule": "the schedule as a cron expression"}

: ​​, .

+4

This should indicate how to do this using PowerShell. It looks like you can add existing WebJobs to the scheduler.
Create Scheduled Azure WebJob with PowerShell

+1
source

All Articles