How to configure CRON using Windows Azure?

Is there a way to use a scheduled Windows task to run a URL or exe on a schedule?

Can I write a program as exe and then create Azure VM, then RDP, in Azure VM and connect it to the Windows Task Scheduler?

+4
source share
3 answers

It has become a lot easier lately, check out this link https://azure.microsoft.com/en-us/services/scheduler/ to create a scheduled task in the new Azure Scheduler. There is a basic Free level, as well as some paid options, but I think this is exactly what many of us were looking for. This is a great solution to run URLs with GET, POST, PUT, DELETE requests.

Just follow the simple instructions. Starting with the Scheduler selection in the Azure Control Panel app menu:

enter image description here

+1
source

Azure now has scheduler .

It allows you to call a web service through HTTP / s and send a message to the Windows Azure storage queue. This is very new, but it can be free if you do not need the scheduler to run frequently. Otherwise, this is a small monthly fee that comes with a scheduled task, which can be up to every minute.

+4
source

Google Azure Storage Queues They allow you to schedule tasks that will be launched later. You can even specify when the task should be performed.

+2
source

Source: https://habr.com/ru/post/1387908/


All Articles