提供有关用 Exec() 方法运行脚本的状态信息。
Object.Status
Status 属性用于程序异步运行时。
Status 属性从枚举类型中返回一个值。
下面的代码运行 calc.exe 并在屏幕上显示最终状态:
Dim WshShell, oExec
Set WshShell = CreateObject("WScript.Shell")
Set oExec = WshShell.Exec("calc")
Do While oExec.Status
= 0
WScript.Sleep 100
Loop
WScript.Echo oExec.Status
var WshShell = new ActiveXObject("WScript.Shell");
var oExec = WshShell.Exec("calc");
while (oExec.Status
== 0)
{
WScript.Sleep(100);
}
WScript.Echo(oExec.Status);