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