我需要自动执行整个过程,因此Cmd提示符打开并在那里设置路径以打开.bat文件 我尝试过使用Window Shell Commands来做这个..它们工作得很好..但是我需要一些其他的方法来打开并设置运行文件的路径..任何人都可以帮助我
提前致谢
答案 0 :(得分:1)
你去吧
Set WshShell = wscript.CreateObject("wscript.Shell")
WshShell.Run "cmd"
WScript.Sleep 100
WshShell.AppActivate "C:\Windows\system32\cmd.exe"
WScript.Sleep 100
wshshell.sendkeys "c:\path"
wshshell.sendkeys "{ENTER}"
wshshell.sendkeys "SET PATH=%PATH%;c:\tmp"
wshshell.sendkeys "{ENTER}"
wshshell.sendkeys "batch.cmd"
wshshell.sendkeys "{ENTER}"