I want to be able to run an exe file in an on premises server from Azure, using a Logic app or maybe azure scheduler.
Is this possible, if so how?
Even doing this via Azure function could be an option. Do i need something like on premises data gateway or maybe even hybrid connections?
As I known, Azure Scheduler and Logic App don't support
.exe
file.For Cloud service, I think you can use worker role to meet your requirement. Worker role could handle background processor. Also, you can use the startup task to run your exe.
You can see a example in this document.