TOP > WSHテクニック集 > [メモ帳を起動する] 

'***
Dim WshShell
Set WshShell = Wscript.CreateObject("Wscript.Shell")
WshShell.Run "%WinDir%\Notepad.exe"
'***

使い方→WSH

TOP