如何在Azure上托管一个简单的.exe文件作为“SaaS”?

时间:2018-06-18 09:30:27

标签: azure cloud virtual-machine azure-active-directory

我有一个简单的calculator.exe,我想在Azure上托管,我希望人们访问和使用它的服务。创建虚拟机并稍后在其上托管我的.exe(并将此虚拟机实例共享给多个用户)是在Azure上托管它的唯一方法,还是有任何其他进程,我只能添加我的.exe并让多个用户访问它?

我是初学者,我正在努力更好地了解这些服务,所以任何帮助/建议/链接都会受到赞赏!

2 个答案:

答案 0 :(得分:0)

Can you transform your app to a webservice? That way you would have a lot less hassle about VM's and other services to provide this. In my opinion, when you are designing a new application, you should aim to stay away from VM's. I do not see another solution to run your .exe (as you intend) in Azure at this time.

答案 1 :(得分:0)

这更适合RemoteApp的用例,而不是Azure本身。 Azure没有简单上传exe并让用户以SaaS方式使用它的功能。

实现这一目标的最佳方法之一是:

  • 创建VM,安装应用程序,然后让用户通过RDP连接到VM以使用该应用程序
  • 创建VM,配置RDS和RemoteApp,发布远程应用程序,用户可以使用该应用程序,而无需首先使用RDP

有一些很好的指南(https://msfreaks.wordpress.com/2013/12/09/windows-2012-r2-remote-desktop-services-part-1/