Forum Discussion
Unlock Windows 11 without password for local account If I forgot?
Locked myself out of my own Windows 11 PC and it set up with a local account a while back. Now, I forgot my password and I don't have a password reset disk or anything like that made in advance.
Is there a legit way to unlock Windows 11 without password while keeping all my files? I've got photos and work stuff on there I really don't want to lose, so I'd rather not just wipe and reinstall if there's another option. Anyone been through this and found something that actually worked?
8 Replies
- ubhbubbIron Contributor
For local account, please make a password reset disk to unlock Windows 11 without password.
- EmilianbTin Contributor
How to unlock Windows 11 without password? Yes, ONTP &RE is a classic open-source tool that can absolutely be used to unlock Windows 11 without password. It's a powerful, complex method that fits your request perfectly, especially if you're comfortable with a command-line environment.
Here is a breakdown of how it works, its limitations, and the process of how to unlock Windows 11 without password using ONTP &RE.
1.Download the Tool: You'll need to obtain the bootable image file from the official ONTP &RE.
2.Create Bootable Media: The downloaded file is typically an . iso image. You'll need a free tool.
3.Boot from the Media: Insert the USB drive into the locked computer, restart it, and use the BIOS/UEFI menu to set the USB drive as the primary boot device.4.Navigate the Command-Line Interface: Once booted, you'll be presented with a simple menu.
- Select the partition: ONTP &RE will scan for Windows installations and suggest a partition. You typically just press Enter to accept the default.
- Choose "Password reset": The program will ask which part of the registry to load; you will choose the option for "Password reset [sam]".
- Select the user account: You'll see a list of user accounts. Type the username of the account you want to unlock and press Enter.
- Clear the password: In the user editing menu, type 1 to clear the password and press Enter. You will see a confirmation that the password has been cleared.
- Quit and save: Type ! and press Enter to quit the user editor, then type q and press Enter to quit ONTP &RE. It will ask if you want to save the changes; type y and press Enter to confirm.
5.Restart the Computer: Remove the USB drive and restart the computer. You should now be able to log in to your Windows 11 account with a blank password.
- AlexnpTin Contributor
You can use FirPE to learn how to unlock Windows 11 without password. It's a free Windows PE tool that acts like a portable "emergency system" for your PC. FirPE includes a specialized tool called Windows Login Unlocker, which is specifically designed to bypass or clear the password for both local and Microsoft accounts, making it a practical solution for how to unlock Windows 11 without password.
This method is especially useful because the tool can handle modern Windows 11 login methods, addressing the common challenge of how to unlock Windows 11 without password. Here are the general steps to use it:
- Create a FirPE USB Drive: Run the FirPE installer on a working computer and use it to create a bootable USB drive.
- Boot from the USB Drive: Plug the USB drive into your locked computer, restart it, and press the specific key (often F2, F12, or ESC) to enter the boot menu. Select the USB drive as the first boot device to start the FirPE system.
- Use Windows Login Unlocker: Once in the FirPE environment, find and run the Windows Login Unlocker tool.
Within the Windows Login Unlocker tool, you'll have two main options:
- Bypass: This creates a temporary local administrator account for one login session, effectively allowing you to bypass the password. The temporary account will disappear after a reboot .
- Reset/Unlock: This option attempts to directly clear the password for your chosen account. The tool can handle both local and Microsoft accounts, though for Microsoft accounts, the process effectively converts them to a local account state, allowing login without a password .
- LucascoboIron Contributor
chntpw is an effective, free, and open-source tool that can help you unlock Windows 11 without password for a local account you have forgotten . It works by modifying the SAM file, where Windows stores local user password hashes, while the operating system is not running . This makes it a perfect solution for learning how to unlock Windows 11 without password when you are locked out.
Before you start, it's important to know what chntpw can and cannot do, which will guide you on how to unlock Windows 11 without password effectively.
It can clear (blank) a local user password, unlock a disabled account, and even promote a standard user to administrator . The recommended action is to clear the password rather than try to set a new one, as the latter can be unreliable on newer systems .
What it cannot do:
- Microsoft Accounts: It does not work for Microsoft (online) accounts. If you log in with an email address, this tool will not help .
- BitLocker Encryption: It is unable to access the SAM file on a BitLocker-encrypted drive. You would need the BitLocker recovery key first .
The process involves booting your computer from a Linux-based environment that contains chntpw. This is the core of the method to unlock Windows 11 without password.
Step 1: Prepare a Bootable USB Drive
On a working computer, you will need to create a bootable USB drive.- Download an ISO: Obtain an ISO file for a Linux distribution that includes chntpw, such as Kali Linux or a dedicated chntpw Live CD .
- Write to USB: Use a free tool like Rufus to write the ISO file to your USB drive, making it bootable .
Step 2: Boot from the USB Drive
- Insert the USB drive into your locked Windows 11 computer and restart it .
- Enter the boot menu (often by pressing keys like F12, Del, or Esc during startup) and select your USB drive as the boot device .
Step 3: Locate and Edit the SAM File
Once booted into the Linux environment, you will use command-line instructions:- Find the Windows partition: Use a command like fdisk -l to list all disk partitions and identify your Windows system drive (e.g., /dev/sda2) .
- Mount the partition: Mount the drive to access its files. For example: mount /dev/sda2 /mnt .
- Navigate to the config folder: Change to the directory containing the SAM file: cd /mnt/Windows/System32/config .
- Run chntpw: To start the interactive password editor, run: chntpw -i SAM .
Step 4: Clear the Password
- Select option 1 for "Edit user data and passwords" .
- Type the username of the account you want to unlock (e.g., Administrator).
- In the user editing menu, select option 1 to "Clear (blank) user password" .
- Quit the program by pressing q and then q again, and confirm with y when asked to save your changes .
Finally, restart your computer and remove the USB drive. You should now be able to log into your Windows 11 local account with a blank password.
- HaspermIron Contributor
If you re locked out of Windows 11 and don have a password reset disk or recovery media, a Linux boot drive offers a clever workaround.
The method involves booting from an Ubuntu boot drive, accessing Windows system files, and replacing the Ease of Access tool with a command prompt. This allows you to launch a command prompt directly from the Windows login screen and reset your password without needing any credentials.
For anyone looking to unlock Windows 11 without password, this method offers a reliable solution.
Instructions:
First, use a disk imaging tool to create a bootable Ubuntu live USB drive.
To boot the locked computer from the USB drive, you’ll need to access the boot menu and select the USB drive as the boot device. Once Ubuntu has finished loading, open a terminal window.
- You ll need to locate the Windows system drive, which is typically mounted at
/media/Windows/ or /mnt/
- but you can also browse File Explorer or use the lsblk command to find the correct partition. Navigate to the Windows System32 folder:
cd /media/Windows/Windows/System32
- Now, rename the Ease of Access tool for backup purposes, then replace it with the Command Prompt:
sudo mv Utilman.exe Utilman.bak
sudo cp cmd.exe Utilman.exe
- These commands will rename the original utility and copy the cmd.exe file to replace it.
- Restart the computer, remove the USB drive, and let Windows boot normally.
- On the login screen, click the Ease of Access button. This will open a Command Prompt with SYSTEM privileges instead of the Ease of Access menu.
- Now, you can use the net user command to reset any user password:
net user your_username new_password
- Replace your_username with your actual account name and new_password with the password you want to set. After executing the command, you can log in using the new password.
This method works because the Ease of Access button runs before the user is authenticated, and Windows executes the Utilman.exe file with system-level privileges. By replacing it with cmd.exe, you can obtain a command prompt with elevated privileges without having to log in.
This is one of the effective solutions for unlock Windows 11 without password, although it requires using another computer to create a Linux bootable USB drive.
- AddisonBellIron Contributor
Getting locked out of your own computer can be frustrating, especially when Windows 11 forgot password for local account describes the problem you are trying to solve. SystemRescue is a bootable recovery environment that can help with system troubleshooting and accessing files when the normal login is unavailable.
How to use:
- Download the recovery image on another computer.
- Create bootable media and start your locked computer from it.
- Open the file manager or terminal in the recovery environment.
- Locate the system drive and back up important personal files.
- Restart the computer and use the official account recovery or password-reset options to regain access.
For your own device, Windows 11 forgot password for local account can often be handled by combining file recovery with the built-in password reset methods.
Note:
- Use recovery tools only on computers you own or are authorized to manage.
- Back up important files before changing system settings.
- Try security questions or an existing password-reset disk first.
- RyanHowardIron Contributor
Forgetting the password to a local Windows account can make it difficult to access personal files and continue using the computer normally. Before making major system changes, users may look for recovery options when dealing with Windows 11 forgot password for local account.
Rescatux is a bootable system recovery utility that includes tools for repairing boot problems and handling certain account-related recovery tasks. It can be useful when troubleshooting your own computer from outside the normal Windows environment.
- To begin, prepare a bootable USB with the recovery environment and restart the computer. Open the boot menu, select the USB device, and wait for the recovery interface to load.
- Next, review the available account and Windows recovery options. Choose the appropriate recovery function for your own local account and carefully follow the instructions shown on screen without changing unrelated system settings.
- After completing the recovery process, restart the computer normally and check whether you can access the account again. For users dealing with Windows 11 forgot password for local account, it is also worth checking Windows' built-in password-reset or recovery options before making deeper system changes.
- AidenGarciaIron Contributor
For users who have another computer and a USB flash drive, using a Windows 11 installation USB drive is a reliable method. This method is suitable for regaining access to a locked Windows 11 system. As an effective way to unlock Windows 11 without a password, this method utilizes a workaround involving the built-in Utility Manager to reset a forgotten password via the Command Prompt.
Required Materials:
- A fully functional computer
- A USB flash drive
- A Windows 11 ISO image
How to Unlock Windows 11 Without a Password
Step 1: Create a Windows 11 Installation USB Drive
- On a computer that is functioning properly, download the Windows 11 Media Creation Tool from the official Microsoft website.
- Run the tool → Select Create installation media for another PC.
- Select the language, edition, and architecture.
- Select USB flash drive → Select the USB drive.
- Wait for the tool to create the USB installation drive.
Step 2: Boot from the USB on the Locked Computer
- Insert the USB drive into the locked computer.
- Restart the computer → Press the boot menu key during startup.
- Select your USB drive from the boot menu.
- The Windows 11 installation screen will now appear.
Step 3: Open the Command Prompt
- On the installation screen, click Next.
- Click Repair your computer.
- Go to Troubleshoot → Advanced options → Command Prompt.
Step 4: Reset the Password
- Back up the original Utility Manager file:
copy C:\Windows\System32\Utilman.exe C:\Windows\System32\Utilman.bak
- Replace Utility Manager with Command Prompt:
copy C:\Windows\System32\cmd.exe C:\Windows\System32\Utilman.exe
- Restart the computer:
wpeutil reboot
Step 5: Reset Your Password
- When Windows starts up and you reach the login screen, click the Ease of Access button in the lower-right corner.
- This will open the Command Prompt instead of the standard Ease of Access tools.
- At the command prompt, enter the following command to reset your password:
net user your_username new_password
- Replace your_username with your actual local account username, and new_password” with your new password.
- If you don’t know your username:
net user
- This will list all user accounts on the computer.
- Close the Command Prompt and log in using your new password.
Step 6: Restore the Original Accessibility Manager
- Open a Command Prompt as an administrator.
- Run the following command:
copy C:\Windows\System32\Utilman.bak C:\Windows\System32\Utilman.exe
- This will restore the original Accessibility Manager.
Use only official Microsoft tools. This is one of the most reliable ways to unlock Windows 11 without password when you’ve forgotten your login credentials and need immediate access to the system.