Schedule service on Azure

2

Hello, does anyone know how I can schedule a .exe run in Azure on a daily basis? I have an email notifier that needs to run every day, it's a C # project that generates an executable and would like to put it on Azure and let it run every morning.

I do not have a VPS or how to leave it on my local machine because I can not leave it on 24/7. It would be somewhat similar to scheduling windows.

    
asked by anonymous 03.11.2016 / 12:29

1 answer

2

I was able to set up following the tutorial tutorial here. Within Azure Application Services, just click on "Web Jobs" and fill out the following form:

Itallowsyoutosendthezipwiththe.exeandchoosethetriggerform,inmycaseitwasScheduledandtheperiodicityisspecifiedbasedona expression CRON , to run every day at 6:30 am:

0 30 6 * * *

I did it that way but it can be done using the Azure scheduler interface:

The cool thing is you can view the logs as well. I saw that it also allows calling other types of files: bat, js, py, cmd.

    
03.11.2016 / 14:21