Home > Software design >  How to install and run normal desktop applications on AWS machine( or any machine without a display)
How to install and run normal desktop applications on AWS machine( or any machine without a display)

Time:03-04

Let's say there is an application which generates/edit basic musical sounds and it doesn't have a API i.e. user can only use it via a GUI. I have a subscription of this application.

Now I want to install this application in my AWS machine and automate some tasks on it.

Is there way to do this? What languages and tools will I need?

P. S. I am a web developer.

CodePudding user response:

Firstly there's no such thing as to run that application through code only, you need a ui since you told us it has GUI, so how can we use the ui functions or the program without ui? if its through code and there is an api ready we might be able to code that and automate those stuffs.

But since theres a GUI for that, what i recommend is to launch a windows remote desktop server, install it there, and automate it using python automation tool, pygui.

  • Related