その他 Tips
Sponsored Link

VBScriptからプログラムを実行する
2012/12/26

 
Runメソッドの詳細は下記サイトを参照
⇒ http://msdn.microsoft.com/ja-jp/library/cc364421.aspx
  例として、メモ帳を起動する
Option Explicit

Dim Shell, Return

Set Shell = CreateObject("WScript.Shell")
Shell.CurrentDirectory = "C:\WINDOWS\"
Return = Shell.Run("notepad.exe", 1, True)

If Return = 0 Then
    WScript.Echo "メモ帳を閉じました"
End If

関連コンテンツ