ここに私の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
上記の場合、コンソール メッセージをキャプチャするために使用できますか? できませんでした。