Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Service StatusContent of List Service Status.vbsMD5 Hash: 532CB3B7EC6D56E2D635FA5D9001ED99 |
||
' Description: Returns a list of all the services installed on a computer, and indicates their current status (typically, running or not running).
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colRunningServices = objWMIService.ExecQuery("Select * from Win32_Service") For Each objService in colRunningServices Wscript.Echo objService.DisplayName & VbTab & objService.State Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |