Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Services Running in a ProcessContent of List Services Running in a Process.vbsMD5 Hash: F657393AD386E834DAA4156D0057C2FF |
||
' Description: Returns a list of services running in the Services.exe process.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colListOfServices = objWMIService.ExecQuery _ ("Select * from Win32_Service Where " & _ "PathName = 'C:\WINDOWS\system32\services.exe'") For Each objService in colListOfServices Wscript.Echo objService.DisplayName Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |