How to Reset a Windows Password With Just Physical Access and an Ubuntu USB

For the majority of my career I’ve worked at small companies. It’s not uncommon that in addition to engineering I also have to play the role of IT specialist. In this role, there have been a few occurrences of being locked out of a Windows PC (often due to an employee leaving the company and have no IT offboarding process). Luckily, with just physical access and a USB key preloaded with Ubuntu, resetting the user password and gaining access to a PC isn’t all that difficult.

The overall process looks like this:

  1. Boot the PC into Ubuntu using the USB
  2. Access the Windows partition and change the user account settings using chntpw
  3. Reset the PC and boot into Windows with the new credentials

Prerequisites

Boot into Ubuntu

Booting a PC from a USB is typically a quick process. Often, the hardest part is figuring out what key combination is required to change the boot media from the startup screen. Depending on the PC brand, the key that accesses the boot menu may be different:

  • Lenovo PCs tend to use F12.1
  • HP computers may require modifying the boot order in the BIOS first using F10.2
  • Dell systems appear to use either F11 or F12.3

Regardless of the brand or system, there’s a good chance that you may have to reset the PC a couple times before getting the right key combination. Once you successfully boot Ubuntu from the USB, select Try Ubuntu without installing.

Changing Windows Account Settings from Ubuntu

Now that we’re loaded into Ubuntu, it’s time to modifying the Windows user account settings.

  1. Open Terminal (keyboard shortcut Ctrl-Alt+T).

  2. Enable additional apt repositories.

    sudo add-apt-repository universe
    sudo add-apt-repository multiverse
    sudo apt update
    
  3. Install chntpw.

    sudo apt install chntpw
    
  4. Navigate to the directory containing the Security Account Manager (SAM) database file in the Windows partition. Typically, the Windows partition is mounted under /media as a long hexidecimal string. From this mount, we want to navigate to Windows/System32/config (e.g., /media/ABC123DEF456/Windows/System32/config).

    cd /media/<WINDOWS MOUNT>/Windows/System32/config
    
  5. Run sudo chntpw SAM to see a list of users and to change the admin password or use sudo chntpw –u <username> SAM to change the password of a specific user. I personally recommend setting the password to Clear (blank) user password.

  6. Turn off the PC.

  7. Remove the USB drive.

  8. Boot back into Windows

  9. Log in!

References

Nicholas Nadeau, Ph.D., P.Eng.
Nicholas Nadeau, Ph.D., P.Eng.
Founder / Fractional CTO

Nicholas Nadeau is a fractional CTO empowering startups with next-gen technology expertise, and a passion for driving corporate innovation. Stay informed on cutting-edge hard tech trends - subscribe to my newsletter. Ready to innovate? Discover my services and accelerate your growth.

Related