Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Inactive ServicesContent of List Inactive Services.vbsMD5 Hash: 16BE4876F7FFDE4F68D58442A9854516 |
||
' Description: Returns a list of all the services installed on a computer that are currently stopped.
strComputer = "." Set objWMIService = GetObject("winmgmts:" & _ "{impersonationLevel=Impersonate}!\\" & strComputer & "\root\cimv2") Set colStoppedServices = objWMIService.ExecQuery _ ("Select * From Win32_Service Where State <> 'Running'") For Each objService in colStoppedServices Wscript.Echo objService.DisplayName & " = " & objService.State Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |