G
Guest
Guest
Archived from groups: microsoft.public.win2000.group_policy (More info?)
If I place a script, such as the following, to change the local administrator password in the GP to run on login:
net user administrator newpassword
or ...
strComputer = "."
Set objUser = GetObject("WinNT://" & strComputer & "/Administrator,user")
objUser.SetPassword "newpassword"
objUser.SetInfo
would the script run on the domain controllers changing the domain administrator password too? Also, if I have several domain controllers for one domain, would I only have to change the GP for the primary controller, or would I need to change all of the Group Policies?
Thanks.
If I place a script, such as the following, to change the local administrator password in the GP to run on login:
net user administrator newpassword
or ...
strComputer = "."
Set objUser = GetObject("WinNT://" & strComputer & "/Administrator,user")
objUser.SetPassword "newpassword"
objUser.SetInfo
would the script run on the domain controllers changing the domain administrator password too? Also, if I have several domain controllers for one domain, would I only have to change the GP for the primary controller, or would I need to change all of the Group Policies?
Thanks.
