Jump to content

Recommended Posts

Posted

How would one enable windows services, specifically Net send (Messenger) via script? This would include, starting the service, and seting the startup type to Automatic if possible.

Posted

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

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
×
×
  • Create New...