How to Reset a Forgotten Windows Password
The Problem
You boot the PC, enter the usual password or PIN, and Windows says it is wrong. Forgotten password, recent change, or a family member “fixing” the login—same result: locked out with data still on the drive.
Method 1: Using a Microsoft Account (Windows 10/11)
If your Windows account is linked to an online Microsoft account, resetting your password is extraordinarily straightforward.
- On the sign-in screen, click the "I forgot my password" link below the text box.
- Verify your identity by entering the email address or phone number associated with your Microsoft account.
- Microsoft will send a security code to your alternative email or phone.
- Enter the code and create a new password. You'll be logged in immediately.
Method 2: Reset a Local Account PIN
Sometimes it's just the PIN that's failing.
- Click Sign-in options below the PIN field.
- Select the key icon to log in with your actual account password instead of the PIN.
- Once logged in, go to Settings > Accounts > Sign-in options and remove or reset the PIN.
Method 3: Using a Password Reset Disk
This only works if you proactively created a Password Reset Disk before you forgot your password.
- Insert your Password Reset USB drive.
- Enter a wrong password on the lock screen to trigger the "Reset password" link.
- Click the link and follow the Password Reset Wizard steps.
- Create a new password and log in.
Technician's Advice: To avoid future lockouts, we highly recommend linking your Windows login to a Microsoft account, or setting up alternative sign-in options like Windows Hello fingerprint or face recognition if your hardware supports it! It also helps to store passwords safely with Sentinel Vault—an offline encrypted vault so a forgotten password never locks you out again.
Method 4: Advanced Reset (Command Prompt)
If it's a local account and you have no reset disk, you can bypass the lock screen using a Windows Installation USB. This method replaces the Accessibility tool (utilman.exe) on the login screen with the Command Prompt, allowing you to forcefully change your password.
Disclaimer: This is highly technical and should be performed carefully. It only works on Local Accounts, not Microsoft Accounts.
Step 1: Boot from a Windows USB
- Create a Windows Installation USB drive on another PC using the Media Creation Tool.
- Insert the USB into the locked PC and boot from it (you may need to press
F12,F8,F2, orDeldepending on your motherboard to change the boot menu). - Once the initial Windows Setup screen appears (where you'd normally choose your language), press
Shift + F10on your keyboard. This will open a Command Prompt window.
Step 2: Replace Utilman with Command Prompt
- In the Command Prompt, find your Windows drive letter. Type
C:and pressEnter, then typedir. If you don't see theWindowsfolder, tryD:,E:, etc., until you find it (it's oftenD:in this recovery environment). - Assuming your Windows drive is
D:, type the following commands exactly, pressingEnterafter each:D: cd Windows\System32 ren utilman.exe utilman.exe.bak copy cmd.exe utilman.exe - Close the Command Prompt, cancel the Windows Installation, and reboot your PC normally by removing the USB drive.
Step 3: Reset the Password
- When you reach the normal Windows login screen, click the Accessibility icon in the bottom right corner.
- Instead of the accessibility menu, an Administrator Command Prompt will magically open.
- Type
net userand pressEnterto see a list of accounts. Note your exact username. - Type
net user "YourUsername" *(replaceYourUsernamewith your actual username, keeping the quotes if it has spaces) and pressEnter. - You will be prompted to type a new password. (The cursor will not move as you type—this is a normal security feature). Press
Enter. - Retype the new password to confirm.
- Close the Command Prompt and log in with your new password!
Step 4: Revert the Changes (Important)
Once logged in and celebrating, it is important to restore utilman.exe back to normal so anyone else can't access the command prompt from the lock screen.
- Boot from your Windows USB again and press
Shift + F10at the installer screen. - Find your Windows drive again (
D:orC:). - Type:
D: cd Windows\System32 del utilman.exe ren utilman.exe.bak utilman.exe - Reboot your PC normally.