如何通过批处理脚本将批处理文件写入服务器rdp。我通过脚本启动了mstsc但是在单击窗口弹出窗口中的按钮时出现了问题。我所做的是在我的批量scipt中包含了一个vbs脚本(使用箭头键和输入键)..但是它没有锻炼。很高兴能帮助纠正这个问题...
这里是vbs代码名称:test2.vbs
Set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Sleep 5000
WshShell.AppActivate "Remote Desktop Connection"
WshShell.SendKeys "{LEFT}"
WshShell.SendKeys "{ENTER}"
批处理文件有:
mstsc /v:172.28.52.18 /admin
cscript /nologo test2.vbs
pause