我正在使用WScript来自动化一些任务,方法是使用 WScript.Shell 调用外部程序。
但是,现在它不等待外部程序完成,而是继续前进。这会导致问题,因为我有一些任务依赖于其他任务首先完成。
我正在使用如下代码:
ZipCommand = "7za.exe a -r -y " & ZipDest & BuildLabel & ".zip " & buildSourceDir
Set wshShell = WScript.CreateObject("Wscript.Shell")
wshShell.run ZipCommand
有没有办法做到这一点,所以它会阻塞,直到 shell 执行的程序返回?