如何使用 asp.net 启动 RDP 会话
我想使用我的 ASP.net 网站启动远程桌面。我尝试使用 .RDP 文件并使用 Process 类通过 MSTSC.exe 启动它,但我无法打开会话。那么请让我知道我该怎么做?
谢谢 拉克斯米拉尔
I want to launch Remote Desktop using my ASP.net website. I have tried using .RDP file and use Process class to launch it using MSTSC.exe but I am unable to open the session. So please let me know how can I do that ?
Thanks
Laxmilal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试 JJ Clements 描述的方法。
基本上,它涉及更新浏览器计算机上的注册表,以支持
rdp://
url 方案。然后,当您单击rdp://foo
等链接时,或者在浏览器地址栏中键入rdp://foo
时,它会打开 MSTSC.exe在浏览器机器上。You can try the approach described by JJ Clements.
Basically it involves updating the registry on the browser machine, to support an
rdp://
url scheme. Then, when you click on a link likerdp://foo
, or when you key inrdp://foo
into the browser address bar, it opens MSTSC.exe on the browser machine.