How to Configure Boot to Always Show Recovery Menu on Windows 11

Quick fix: Open Terminal (Admin) and run bcdedit /set {bootmgr} bootmenupolicy legacy. This enables the F8 key during boot to reach Advanced Boot Options. Also run bcdedit /set {bootmgr} displaybootmenu yes and bcdedit /set {bootmgr} timeout 10 to show the boot manager menu for 10 seconds on every startup. When something breaks, you need to … Read more

How to Use Last Known Good Configuration on Windows 11

Quick fix: Windows 11 doesn’t have a “Last Known Good Configuration” menu option (removed since Windows 7). The modern equivalent is System Restore: boot from Windows install USB → Repair your computer → Troubleshoot → Advanced options → System Restore. Pick a restore point from before the issue. You remember Last Known Good Configuration as … Read more

How to Mount the Hidden Recovery Partition on Windows 11

Quick fix: From Terminal (Admin), use diskpart: diskpart → list volume → identify Recovery partition (~500 MB, FAT32) → select volume N → assign letter=R. Recovery partition is now accessible at R: in File Explorer. Browse contents, but don’t modify Microsoft-owned files. After inspection: remove letter=R. You want to inspect the hidden Recovery partition — … Read more

How to Manually Reinstall Windows 11 While Keeping All Files

Quick fix: Download the Windows 11 ISO from microsoft.com/software-download/windows11. Mount the ISO (double-click). Run setup.exe. Choose Upgrade: Install Windows and keep files, settings, and apps. This is an in-place upgrade — reinstalls Windows over itself preserving everything. You want to refresh Windows 11 because of corruption, weird behavior, or update failures. But you want to … Read more

Fix Cannot Install Windows 11 ISO With Setup.exe Hanging

Quick fix: Windows 11 setup.exe hanging from ISO usually means antivirus interference or corrupted ISO. Close all running apps, disable third-party AV temporarily, verify ISO hash matches Microsoft’s published values. If still hanging: download a fresh ISO; run setup with setup.exe /dynamicupdate disable to skip update download. You downloaded the Windows 11 ISO. Mounted it. … Read more

Why Windows 11 Cannot Activate After Hardware Change and How to Reactivate

Quick fix: After major hardware change (motherboard, CPU), digital license may need re-linking. Open Settings → System → Activation → Troubleshoot. Click I changed hardware on this device recently. Sign in with the Microsoft Account that had digital license for old hardware. Pick the PC from list, click Activate. You replaced your motherboard. Windows boots … Read more

Fix Windows 11 Cannot Find Original Product Key After Reset

Quick fix: After reset, Windows can’t find the OEM product key. Recovery: Open Terminal (Admin) and run wmic path softwarelicensingservice get OA3xOriginalProductKey. Returns OEM key from UEFI firmware. Enter it via Settings → Activation → Change product key. You reset Windows 11. Now it shows “Not activated.” You don’t have the product key printed anywhere … Read more

How to Mount an ISO File Without Burning a USB Stick on Windows 11

Quick fix: Right-click the .iso file → Mount. Windows 11 mounts it as a virtual DVD drive in File Explorer. Browse the contents, run setup.exe, install or extract files. To unmount: right-click the mounted drive → Eject. Native feature; no third-party tools needed. You have an .iso file (Windows install media, Linux distro, software CD). … Read more

How to Retrieve OEM Product Key From a Pre-Installed Windows 11 PC

Quick fix: Open Command Prompt (Admin). Run: wmic path softwarelicensingservice get OA3xOriginalProductKey. The output is your OEM product key stored in BIOS/UEFI. Or use PowerShell: (Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey. If empty: PC doesn’t have OEM key in firmware (manual installs and resale PCs may not). OEM PCs from Dell, HP, Lenovo, etc. ship … Read more

How to Leave the Windows Insider Program Cleanly on Windows 11

Quick fix: Open Settings → Windows Update → Windows Insider Program. Click Stop getting preview builds → toggle on Unenroll this device immediately (only available when on stable channel) OR Unenroll this device after the next major version release. To leave entirely without waiting: clean-install Windows 11 stable build via ISO from microsoft.com/software-download/windows11. The Windows … Read more