John117 Posted July 9, 2007 Posted July 9, 2007 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.
John117 Posted July 9, 2007 Author Posted July 9, 2007 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now