Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Start AutoStart Services that have StoppedContent of Start AutoStart Services that have Stopped.vbsMD5 Hash: 70DA8971840156AA8EC2BF0BE3528D05 |
||
' Description: Restarts any auto-start services that have been stopped.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colListOfServices = objWMIService.ExecQuery _ ("Select * from Win32_Service Where State = 'Stopped' and StartMode = " _ & "'Auto'") For Each objService in colListOfServices objService.StartService() Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |