Home > Blockchain >  Best way to run .exe file in Azure?
Best way to run .exe file in Azure?

Time:07-20

I have an .exe application that outputs a file into the folder path you give as an input. The end goal is to get the output file into blob storage.

I have considered azure functions but not sure if it is possible to provide it with a folder path ... anybody have any ideas?

CodePudding user response:

If you want to run an .exe application in Azure, you can use Azure Functions. You can use an Azure Function to trigger the .exe application to run, and then use another Azure Function to get the output file from the application and store it in blob storage.

CodePudding user response:

You should be able to accomplish your task in Azure Functions, but it does not run an exe. For that, you need Azure Batch to execute custom activity.

  • Related