Today we have a VM that sits idle most of the day, but once in a while we throw a time critical batch processing job after it and it runs at 100% CPU for 30 secs.
This approach does not really scale in a cost efficient way since we need to pay for a massive VM to sit idle most of the day.
The batch job is like this:
.\PhotoView.exe SRC "d:\myfiles\file1.ies" DEST "d:\output\"
I'm looking for a service that can help me reduce cost and that can handle the growing load - and was looking at Azure Functions since it can execute an EXE.
But it turns out the PhotoView.exe (http://www.oxytech.it/software/photoview.asp?LN=UK) needs to be installed on a machine to run, xcopy do not seem to work.
Any good ideas are welcome