| Set Argv = WScript.Arguments
if Argv.Count <> 0 then
strServer = Argv(0)
strUser = Argv(1)
strPass = Argv(2)
else
strServer = "."
end if
on error resume next
Set objLocator = CreateObject("WbemScripting.SWbemLocator")
if Err.Number <> 0 then
Wscript.Echo Err.Description
Wscript.Quit
end if
Set objWmi = objLocator.ConnectServer( _
strServer, _
"root\cimv2", _
strUser, _
strPass )
if Err.Number <> 0 then
Wscript.Echo Err.Description
Wscript.Quit
end if
objWmi.Security_.ImpersonationLevel = 3
if Err.Number <> 0 then
Wscript.Echo Err.Description
Wscript.Quit
end if
on error goto 0
Set objTarget = objWmi.ExecQuery( "select Name,Started,PathName from Win32_Service" )
strList = ""
on error resume next
For Each obj in objTarget
if obj.Started then
strList = strList & "実行 "
else
strList = strList & " -- "
end if
strList = strList & obj.Name & vbCrLf
' strList = strList & obj.PathName & vbCrLf
Next
on error goto 0
Wscript.Echo strList
| |