Reset Windows Server Administrator Password
Reset Windows Server Administrator Password
vultr.com/docs/reset-windows-server-administrator-password
There are times when you have forgotten your local administrator password on Windows
and need to have it reset. It is easily possible to reset this password if you had created a
Password Reset Disk beforehand, but that's not usually the case. In this article, we're
going through a step by step guide on how to reset your password on Windows Server.
Introduction
We will be using a Finnix rescue CD to recover the administrator password. Finnix is a
fully self-contained Linux LiveCD that is based on Debian. It is very useful for repairing
hard drives, boot records, and recovering systems. For more information on Finnix, see
the Linux repair guide.
1/5
After a moment, Finnix will provide you with a terminal where you can input commands.
fdisk -l
An easy way to determine the partition device is to compare the size of the partition
device to the size of your Vultr VM. For example, I have a 45GB Windows Server 2012
plan. The output of fdisk -l shows me that /dev/vda2 has a size of 44.9G . Therefore
/dev/vda2 is the partition that I'm interested in; note that yours may be named
differently.
2/5
Mount the partition.
mkdir /mnt/win
mount /dev/vda2 /mnt/win
You will likely get the error shown below saying "The disk contains an unclean file system
(0, 0).". Don't worry, that's normal.
We can run the ntfsfix command to resolve this error. Replace /dev/vda2 with your
partition.
ntfsfix /dev/vda2
3/5
Clear the password
Navigate to the C:\Windows\System32\config folder.
cd /mnt/win/Windows/System32/config/
chntpw SAM
4/5
Here you may clear the administrator password and also unlock the account. The
account becomes locked when you try to login too many times before attempting to
reset the password. Follow these steps.
cd ~
umount /mnt/win
5/5