I work on a small network that runs on windows server 2003, and with machines running xp. Is there a group policy that could push a new user name and password to replace our old local administrator user accounts?
feedback
|
|
I use pspasswd from sysinternals. http://www.microsoft.com/technet/sysinternals/Utilities/PsPasswd.mspx Here is a user automating it: http://forum.sysinternals.com/forum_posts.asp?TID=9469 Edit: I also just found this which is exactly what you are asking for: http://www.gilham.org/Blog/Lists/Posts/Post.aspx?List=aab85845-88d2-4091-8088-a6bbce0a4304&ID=505 | |||||||
feedback
|
|
I use a computer startup script to do this for local "Administrator" passwords, combined with a "trap door" group membership so that the script only runs once.
(I really enjoy doing "trapdoor" scripts like this. I use them to run SYSOCMGR the first time a new PC is joined to the domain, etc.) | |||||
feedback
|
|
Password, no; you can, however, set the Administrator username using GP. It's under:
Find the one called "Rename administrator account", and change it to whatever you want. For re-setting the password, we've simply set them all on installation to ridiculously long strings, then created a "Workstation Admin" group in Active Directory; then, using Group Policy, go to:
Add the new group, and make them a member of "Administrators". So long as your PCs are joined to the domain, and you give your techies membership of this group, they can log on using their personal Active Directory accounts, rather than sharing a local administrator account (which gives you much more accountability!). Your mileage may vary when using this technique on laptops or machines that are often disconnected from AD, of course. Hope that helps! | |||||
feedback
|
|
You can attach a startup script for the computer account. This can check the existence of a user and if it's not there, create it. The catch is ensuring the password is encrypted in some manner. However, it sounds like you just want to rename the administrator account. If so, see Keith's response. You can rename via GPO and that's the way to go. Setting the password is more difficult and can't be done directly via GPO except through a startup script. | |||
|
feedback
|