First of all, it sounds like the machine has cached credentials which are allowing users to login with domain\administrator
. That's why users can login, but you can't change it - loging in can be done with cached credentials, changing a domain password requires connectivity to a domain controller.
Probably the quickest way to remediate this is to unjoin the computer from the domain. Make sure you have the (or a) local administrator's credentials before doing that, though.
As noted in other answers, the command is netdom remove computername /Domain:domain /UserD:user /PasswordD:* /Force
. You can also do so through the computer properties, Computer name, domian and workgroup settings
by changing the computer's domain from the domain it's on to any workgroup name you fancy.
If you don't have local administrator credentials, there are a couple ways to reset a password on a Windows machine.
One is to use a utility like the "Ultimate Boot CD" - boot the machine to CD, and select the NT password rest tool. The other popular, native option is to use your Windows install CD to enter a recovery console, swap cmd.exe
with utilman.exe
, reboot, and launch the ease-of-use/accessibility tool, which has been replaced with cmd.exe. You can then reset the password with net user
. Don't forget to switch cmd.exe
and utilman.exe
back once you're done.
Finally, it's bad practice to log in with the default administrator password, in general. (It's like using root
in Linux-land, but less excusable. In Windows-land, best practice is to disable or rename the default Administrator user.) Extra bad to do so with the default domain administrator password, and extra, extra bad to have a bunch of users logging on with the default domain administrator password. Your next order of business after fixing this issue is to fix your policies, ASAP.