|
| |||||||||
| Tags: administrator, local administrator password, password, windows 2003, windows xp, workstation |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Reset local Administrator password
Windows 2003 and XP professional Domain Environment. Dear all, i want to change local administrator password of all workstations (XP) and Windows 2003 member servers, since there are 90 hosts and 15 member server. is there easy way to set the new password on all systems? |
|
#2
| |||
| |||
|
I suggest that you can use to complete the script, please refer to net user [UserName [Password | *] [options]] [/domain] net user [UserName {Password | *} /add [options] [/domain]] net user [UserName [/delete] [/domain]] Want to help you |
|
#3
| |||
| |||
| RE: Reset local Administrator password
Like many admins, I had this problem a few years back. To resolve it, and also with the caveat that different PC naming conventions would need different local admin passwords. I created the following VBS script: -------------------- On Error Resume Next Set DomObj = GetObject("WinNT://<new_format_domainname>") DomObj.Filter = Array("computer") For Each computer In DomObj if (Instr(computer.name,"xxx") or Instr(computer.name,"yyy") or Instr(computer.name,"zzz")) then wscript.echo computer.name Set DomObj = GetObject("WinNT://<old_format_domainname>/" & computer.name & "/Administrator,user") DomObj.SetPassword "password" end if Next ----------------------------- replace the <new_format_domainname> and <old_format_domainname> with your relevant info. Note that you will have to replace xxx, yyy and zzz with part of your relevant naming convention and even remove instances of the Instring if you don't need them. eg if all your head office PC's start with "HO", replace with "HO". It will then reset the password on any PC in the directory that starts with "HO". save the file as reset_password.vbs run it by typing: cscript <path>\reset_password.vbs Unbeleiveable this functionality was not part of windows from the outset as it is such an obvious task that needs to be achieved! |
|
#4
| |||
| |||
| Re: Reset local Administrator password
Reset /crack/hack/recovery windows password/admin password/ vista password with windows password unlocker 1. Log onto a computer that can link to the Internet. Download Windows Password Unlocker 4.0 from //sn.im/wpu and decompress it on that PC. Note that: there is a .ISO file. Burn the .ISO file to a CD. 2.Get out the newly created CD and insert it to the locked computer. 3.Re-boot the locked computer and then follow the process of instructions. Just after a few steps, the old password will be removed. 4.Set new password: Step 1: Open the "Control Panel Step 2: Click the "User Account Step 3: Select the account you wanna set a new password. Step 4: Click "Changing Account " and "Set Up Password", then fill out the form as listed. Click "Create Password". |
|
#5
| |||
| |||
| Re: Reset local Administrator password
Hi - the thread to which you replied is no longer on the server and you didn 't quote the original text here - nobody will know what you're talking about. The Techarena forums are to be avoided - same with Google Groups, etc. If you want to access the newsgroups to do anything other than search old posts, try using a news client, such as Forte Agent, Thunderbird, or even Outlook Express. It's a lot easier to do nearly everything that way. You can mark messages to be watched, filter the views so you can see replies to your posts easily, and search. The Microsoft public news server is msnews.microsoft.com and you can subscribe to as many groups as you like; no authentication is required. The following is from a post by MVP Malke |
|
#6
| |||
| |||
| Re: Reset local Administrator password
You can also use news.microsoft.com. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Reset local Administrator password" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to reset local administrator passwords in a Windows Domain | Inigo | Tips & Tweaks | 3 | 22-11-2010 03:25 PM |
| Reset Administrator Password in Windows 7 | Measurer | Operating Systems | 5 | 30-03-2010 08:16 PM |
| Re: Change local administrator password on a DC | Paul Yhonquea | Active Directory | 1 | 10-08-2009 07:06 PM |
| Reset xp administrator password using linux | Sacchidananda | Operating Systems | 3 | 22-07-2009 10:22 PM |
| what to do after reset domain administrator's password? | tree leafs | Active Directory | 8 | 27-02-2009 02:57 AM |