[プログラムが終了するまで待つ]
メモ帳(notepad.exe)を起動し、終了するまで処理を停止します。
【ソースコード】
[tips0106.vbs]
Option Explicit
On Error Resume Next
Dim objWshShell
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
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 は終了しました。