| Set WshShell = WScript.CreateObject( "WScript.Shell" )
Set Fso = CreateObject( "Scripting.FileSystemObject" )
' **********************************************************
' 実行されているこのディレクトリを取得
' **********************************************************
strCurPath = WScript.ScriptFullName
Set obj = Fso.GetFile( strCurPath )
Set obj = obj.ParentFolder
strCurPath = obj.Path
' **********************************************************
' チェック用の文字列を取得
' **********************************************************
strPath = "HKLM\SOFTWARE\Classes\VBSFile\Shell\Open\Command\"
strValue = WshShell.RegRead( strPath )
' **********************************************************
' Wscript なら、Cscript に変更
' **********************************************************
bWscript = False
if InStr( 1, strValue, "WSCRIPT", 1 ) > 0 then
bWscript = True
' コマンドプロンプトを開かない同期処理
Call WshShell.Run( "cscript.exe /H:Cscript", 0, True )
end if
' **********************************************************
' 同期でコマンドプロンプトを開いて、PAUSE
' **********************************************************
strCommand = "cmd.exe /c """ & strCurPath
strCommand = strCommand & "\list_service_started.vbs"""
strCommand = strCommand & " & pause"
Call WshShell.Run( strCommand, , True )
' **********************************************************
' 元に戻す
' **********************************************************
if bWscript then
Call WshShell.Run( "cscript.exe /H:Wscript", 0, True )
end if
| |