Archive for October, 2021

Reset Forgotten Windows 11 Password with Utilman.exe Trick

October 29th, 2021 by Admin

Forgot your Windows 11 password? Using your laptop some time ago and can’t remember the password now? If you have previously created a password reset disk, you can get in without much trouble. In this tutorial we’ll show you another method for resetting forgotten Windows 11 password – the Utilman.exe trick, without using any third-party software.

How to Reset Forgotten Windows 11 Password with Utilman.exe Trick

  1. Boot your locked PC from Windows 11 installation media (CD or USB). When you get to the initial setup screen, press the SHIFT + F10 keyboard shortcut to open Command Prompt.

  2. Type the following commands to launch the diskpart utility and display the partitions on all disks.
    diskpart
    list volume

    You need to determine which volume has the OS on it. The system partition can be identified by its size, and it’s not assigned a letter by default.

  3. To make the system partition accessible, we need to run these commands to assign a drive letter to it. Replace 1 with the volume number of your system partition, and C with an unused drive letter.

    select volume 1
    assign letter=C
    exit

  4. At this point, type the following commands to make backup of your existing Accessibility Manager tool (Utilman.exe), and replace Utilman.exe with cmd.exe.

    copy c:\windows\system32\utilman.exe c:\
    copy /y c:\windows\system32\cmd.exe c:\windows\system32\utilman.exe

  5. Close all open windows and restart the computer without Windows 11 installation media.

  6. After you get to the Windows login screen, click the Accessibility icon in the lower-right corner. It will launch Command Prompt.

  7. You can now reset the forgotten password of any existing user, by using the net user command:
    net user account_name new_password

  8. Close Command Prompt and you can then log in with your new password. To restore the original Utilman.exe, reboot with the installation media that you used earlier, and execute this command:

    copy c:\utilman.exe c:\windows\system32

That’s it!

How to Fix the Error: This PC can’t run Windows 11

October 14th, 2021 by Admin

When you boot from Windows 11 installation media to begin setup, you may get the error message “This PC doesn’t meet the minimum system requirements to install this version of Windows. For more information, visit https://aka.ms/WindowsSysReq“.

This problem usually happens when your PC doesn’t have a modern CPU, TPM 2.0 chip or enough RAM. In this tutorial we’ll walk you through the steps to bypass / fix the error “This PC doesn’t meet the minimum system requirements to install this version of Windows” during Windows 11 setup.

How to Fix the Error: This PC can’t run Windows 11

  1. When you’re greeted with the error “This PC can’t run Windows 11” during installation, press the Shift + F11 keyboard shortcut to open up the Command Prompt window.

  2. Type regedit and press Enter to launch Registry Editor.

  3. Navigate to the location: HKEY_LOCAL_MACHINE\SYSTEM\Setup. Right-click on the Setup key and select New -> Key.

  4. Name the newly-created key as LabConfig, next right-click on the right pane and select New -> DWORD (32-bit) Value.

  5. Name the new DWORD as BypassTPMCheck, and then double-click it and change its value data to 1.

  6. Repeat the same process to create other DWORD values: BypassSecureBootCheck,BypassRAMCheck and BypassCPUCheck, and also set their value data to 1.

  7. Close Registry Editor and quit Windows Setup.

  8. It will go back to the first Windows Setup screen and you can proceed with Windows 11 installation.