OpTech Marketing
OpTech Marketing

Reputation: 437

How can I set up a CRON job using Windows Azure?

Is there a way to use the windows scheduled task to kick off a url or a exe on a schedule?

Can I write a program as an exe then create a Azure VM then RDP into the Azure VM and hook it up to windows task scheduler?

Upvotes: 12

Views: 37178

Answers (4)

nelion
nelion

Reputation: 1962

Today the scheduler has been Azure Logic Apps: https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-overview

If you are looking for something like a cron job (which is a job, that is being run at specific time again and again), then check out Azure Functions: https://learn.microsoft.com/en-us/azure/azure-functions/functions-overview

Upvotes: 3

Milan
Milan

Reputation: 3325

Things got much easier lately, please see this link https://azure.microsoft.com/en-us/services/scheduler/ to create a scheduled job in the new Azure Scheduler. There is a basic Free tier as well as some paid options but I think this is exactly what many of us were looking for. It is an excellent solution for triggering URLs with GET,POST,PUT,DELETE requests.

Just follow the simple instructions. Starting by selecting "Scheduler" from the Azure dashboard app menu:

enter image description here

Upvotes: 6

Patrick Desjardins
Patrick Desjardins

Reputation: 140753

Azure does have a scheduler now.

It allows invoking a Web Service over HTTP/s and post a message to a Windows Azure Storage Queue. It's very new but it can be free if you do not need the scheduler to be executed often. Otherwise it's a small monthly fee which come with scheduled task that can be up to every minute.

Upvotes: 6

RyanFishman
RyanFishman

Reputation: 695

Google Azure Storage Queues. They allow you to schedule jobs that will run at a later date. You can even specify when the job should run.

Upvotes: 2

Related Questions