Jump to content

enable windows services


Recommended Posts

Found:

Dim $objWMIService, $objItem, $objService

Dim $colListOfServices, $strService

; NB strService is case sensitive.

$strService = "YourService";< - Service Name

; Connect to WMI.

$objWMIService = ObjGet("winmgmts:root\cimv2")

$colListOfServices = $objWMIService.ExecQuery ("Select * from Win32_Service Where Name = '" & $strService & "'")

For $objService in $colListOfServices

$objService.StartService()

Next

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...