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