Quote:

Here's a vbs snippet you could convert to Kixtart:

Code:

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colListOfServices = objWMIService.ExecQuery _
("SELECT * FROM Win32_Service WHERE Name = 'DbService'")
For Each objService in colListOfServices
objService.StopService()
objService.Delete()
Next



-Shawn




Shawn,

Thanks for the point in the right direction, however I am a real newbie when it comes to scripting, both in Kix and VBS... any additional direction would be helpful. The script above was grabbed from one of the other sites. Thanks for your help and insight.

Chris