这是我的 VBS 代码
Set wshshell = wscript.CreateObject("WScript.Shell")
Wshshell.run "C:\Temp\Executable.exe -c -dir C:\Productdir"
'Wait till "This will install the product on your computer. Press OK, Cancel" appears
WScript.Sleep 10000
WshShell.SendKeys "~"
- 是否有可能“而不是硬编码的 10 秒睡眠”添加这样的东西,例如
if consolemessage="This will install the product on your computer. Press OK, Cancel" then WshShell.SendKeys "~"
? - 在上述情况下可以
WScript.StdOut
用来捕获控制台消息吗?我没能做到。