Windows Azure Scheduler allows you to invoke actions—such as calling HTTP/S endpoints or posting a message to a storage queue—on any schedule. With Scheduler, you create jobs in the cloud that reliably call services both inside and outside of Windows Azure and run those jobs on demand, on a regularly recurring schedule, or designate them for a future date.
Questions tagged [azure-scheduler]
99 questions
3
votes
1 answer
Laravel schedule on Azure WebApp
I am looking for a way to link an azure scheduler or web job to the Laravel schedule.
My understanding is, to set up an Azure schedule I would need an end point to link to my Laravel, which I am not sure how to achieve that.

Erick
- 365
- 1
- 4
- 18
3
votes
1 answer
"Unauthorized" when invoking an API App from Azure Scheduler with Azure AD OAuth authentication
I have an API App which I have secured with Azure Active Directory authentication. Actions of this API App I want to invoke with Azure Scheduler. I entered tenant id, client id & secret into the Scheduler action.
When I schedule or run the job I…

Kai Walter
- 3,485
- 2
- 32
- 62
3
votes
2 answers
Scheduled Azure WebJob Scheduler log suddenly reporting 401 - Unauthorized
I have scheduled a (single, free) WebJob. This has been working fine form months. I just updated to the newest Azure WebJobs Nuget, which may be circumstantial.
What I now get in the Azure WebJob scheduler logs is the following although I deployed…

GGleGrand
- 1,565
- 1
- 20
- 45
3
votes
1 answer
Re-run the azure webjobs after it fails with exception for N number of times
I've a web job that grab a file from internet and process it. I have tied it s to a scheduler that run everyday at the mid-night.
Sometimes the grab file process fails and throws an exception which crashes the web jobs and stops till the scheduler…

Pitamber Tiwari
- 536
- 1
- 6
- 19
2
votes
1 answer
How can I find next run times of Azure Scheduler Collection Job
I have azure scheduler job created with the below parameters.
"properties": {
"startTime": "2019-03-31T00:00Z",
"recurrence": {
"frequency": "Months",
"interval": 1,
"end": "Never"
},
}
This is intended to run…

PNDev
- 590
- 1
- 8
- 23
2
votes
2 answers
Running PowerShell Script in Azure as a task scheduler without creating any virtual machine
I have a PowerShell script that i want to run every 6 hours as a task scheduler on Azure. But the concern is that I don't want any Virtual machine for that. So is there any way so that it can be done without the creation of any virtual machine?

Sandeep Anand
- 99
- 2
- 13
2
votes
3 answers
Deployment Slot for Azure Scheduler and Azure logic Apps
I am trying to build a logic flow which will be triggered by the scheduler . The scheduler will send a message to the service queue. And the Service queue will be by trigger point for the logic app.
Now the issue is that , I want to have a version…

Dinesh
- 193
- 2
- 14
2
votes
1 answer
How to genrate excel file on azure storage using c# console application?
I have a console application which is fire some SQL queries on azure SQL and data will transfer into excel file. This is working fine on my local computer.
Issue
But I want host this .exe on azure service as scheduler. That time I realize, how to…

Abhishek
- 35
- 1
- 4
2
votes
1 answer
Retrieval of Azure Runbook schedules list having a particular schedule triggered on a weekly basis generates an error
I've recently created a runbook schedule which is executed periodically - every 1 week on Monday without expiry date.
The creation of schedule was flawless.
However when i want to retrieve a list of all runbook schedules using the powershell cmdlet…

qbas1409
- 45
- 5
2
votes
1 answer
Azure Scheduler: first working day of every month
We are using Azure Scheduler API to create scheduling job on Azure Scheduler. We got the new request to create a recurring job that happens at the FIRST WORKING day of every month.
Normally it will be on the 1st day of the month. But if the 1st of…

cuongle
- 74,024
- 28
- 151
- 206
2
votes
1 answer
Is there a way to specify an arbitrary time to start an azure scheduled job?
Currently from the Azure portal (old portal) when setting up a scheduled job start time, you can only specify times as half hour intervals like 12:00 or 3:30 but you can't tell it to start from say 12:55. Is there another way to set up a scheduled…

erotavlas
- 4,274
- 4
- 45
- 104
2
votes
2 answers
Azure Scheduler Job Collection integration with Resource Manager Deployment Model Storage Queue
I am attempting to create a new Azure Scheduler Job that has a Storage queue action, but the only Storage Accounts that I am able to select from my Azure Subscription are "Classic" Storage Accounts, I can not select a "Resource Manager" Storage…

Aaron Hoffman
- 6,604
- 8
- 56
- 61
2
votes
2 answers
Azure WebJobs that are command line based, on a schedule - no longer possible?
I use sugar CRM and it has cron.php
I'm sure that long ago in the old portal, when "web jobs PREVIEW" was visible on a web site dashboard, I made a web job that called cron.php and it all seemed to work well. I don't recall if I called cron.php…

Caius Jard
- 72,509
- 5
- 49
- 80
2
votes
1 answer
How do i schedule Azure Machine learning web service in Azure Scheduler?
I have published the web service from Azure Machine Learning experiment and now i want this web service to be scheduled using Azure Scheduler
Can somebody please state the procedure?
I got the API KEY, REQUEST/RESPONSE and Batch Execution URI from…

Pratik409
- 301
- 2
- 10
2
votes
1 answer
Azure SQL Elastic Performance Scale
I have Standard S1 SQL database which is fine for most tasks. However I have an overnight task that needs much more computing power.
I am wondering if anyone has experience of using scheduling to scale up the database in terms of Service Tier and…

Jezbers
- 815
- 10
- 20