[プログラムが終了するまで待つ]

メモ帳(notepad.exe)を起動し、終了するまで処理を停止します。

【ソースコード】
[tips0106.vbs]
Option Explicit
On Error Resume Next

Dim objWshShell     ' WshShell オブジェクト
Dim strCmdLine      ' 実行するコマンド
Dim objExecCmd      ' 実行コマンド情報

Set objWshShell = WScript.CreateObject("WScript.Shell")
If Err.Number = 0 Then
    strCmdLine = "notepad.exe"
    Set objExecCmd = objWshShell.Exec(strCmdLine)
    If Err.Number = 0 Then
        WScript.Echo strCmdLine & " を起動しました。"
        Do While objExecCmd.Status = 0
            ' 1秒待ってみる
            WScript.Sleep(1000)
        Loop
        WScript.Echo strCmdLine & " は終了しました。"
    Else
        WScript.Echo "エラー: " & Err.Description
    End If
Else
    WScript.Echo "エラー: " & Err.Description
End If

Set objExecCmd = Nothing
Set objWshShell = Nothing

【実行結果】
C:\> cscript //NoLogo tips0106.vbs
notepad.exe を起動しました。
notepad.exe は終了しました。