写一个vbs脚本判断上一个指令是否执行完成
时间: 2023-03-07 21:51:22 浏览: 325
一个vbs脚本
可以使用 WshShell.Run 方法来运行指令,并检查返回值是 0,以确认上一个指令是否执行完成。例如:Dim WshShell
Set WshShell = WScript.CreateObject("WScript.Shell")
Dim RetVal
RetVal = WshShell.Run("dir c:\", 1, True)
If RetVal = 0 Then
MsgBox "指令执行完成"
Else
MsgBox "指令执行失败"
End If
阅读全文