如何使用 VBScript 运行 RDP 文件?
到目前为止我已经:
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run("""C:\Server01.rdp""")
但是当我运行它时,什么也没有发生。是否可以使用 VBScript 运行 RDP 文件?如果是这样,那我做错了什么?
So far I have:
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run("""C:\Server01.rdp""")
But when I run it, nothing happens. Is it even possible to run an RDP file with VBScript? If so, then what am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用传入的 .rdp 文件名调用 mstsc.exe:
try calling mstsc.exe with the .rdp file name passed in:
我认为您需要运行 mstsc.exe 并将 rdp 文件作为参数传递。
http://technet.microsoft.com/en-我们/库/cc753907%28WS.10%29.aspx
I think you need to run mstsc.exe and pass the rdp file in as an argument.
http://technet.microsoft.com/en-us/library/cc753907%28WS.10%29.aspx
这将起作用:(在带有 VBSCRIPT 的 PHP 中):
问题是,这只适用于 IE,仍在寻找 Firefox / Safari...运气好吗?
This will work: (In PHP with VBSCRIPT):
The problem is, that only works in IE, still looking for Firefox / Safari... any luck??