you can use WMI and Win32_Service class, should find loads of examples on the site. i find ADSI more readableSet objComputer = GetObject("WinNT://computername,computer")objComputer.Filter = Array("Service")For Each aService In objComputer Wscript.Echo aService.Name & "=" & aService.StatusNext...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.