G
Guest
The general problem: on every win2k machines, same proble
An service must be run as domain administrator. The service must be stopped every night for backup. Sometimes the service don’t start up again because the password is corrupt
So, I have a workaround for this, an vb script
strComputer = "servername
Set objWMIService = GetObject("winmgmts:"
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2"
Set colServiceList = objWMIService.ExecQuery
("SELECT * FROM Win32_Service WHERE StartName = 'DOMAIN\\Administrator'"
For Each objservice in colServiceLis
errReturn = objService.Change( , , , , , , , "password"
Nex
This was working until… apllyings ome patches on our dns server. Today the domain administrator don’t has the right change the password via an vb script
I have also tried to use “runas … sunarâ€, no permission
When I change (direct granting) the rights on wmi namespace for the domain administrator its works, but for a short time
HELP
An service must be run as domain administrator. The service must be stopped every night for backup. Sometimes the service don’t start up again because the password is corrupt
So, I have a workaround for this, an vb script
strComputer = "servername
Set objWMIService = GetObject("winmgmts:"
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2"
Set colServiceList = objWMIService.ExecQuery
("SELECT * FROM Win32_Service WHERE StartName = 'DOMAIN\\Administrator'"
For Each objservice in colServiceLis
errReturn = objService.Change( , , , , , , , "password"
Nex
This was working until… apllyings ome patches on our dns server. Today the domain administrator don’t has the right change the password via an vb script
I have also tried to use “runas … sunarâ€, no permission
When I change (direct granting) the rights on wmi namespace for the domain administrator its works, but for a short time
HELP