Windows 11 Not Booting After Clean Install: 7 Fixes That Work

A clean installation should give you a fresh, working copy of Windows 11. But some PCs refuse to boot after the installer finishes and restarts. Instead of loading Windows, the machine drops back to the boot device selection screen, throws an error code like 0xc00000e, loops back into UEFI, or sits on a black screen with nothing loading.

Windows 11 Not Booting After Clean Installation

This is not a sign of a broken PC. In most cases, the cause is a Secure Boot certificate conflict with outdated install media, a misconfigured UEFI setting, or a corrupted boot record written during installation. Every fix below targets the clean-install scenario specifically.

Work through the fixes in order. Start with Fix 1 and move down until your PC boots.

Why Windows 11 Is Not Booting After Clean Install

The installer completes, the PC restarts, and then something fails. These are the most common reasons:

  • Outdated install media: Microsoft updated its Secure Boot certificates. If your USB drive carries an old Windows 11 ISO, the boot process can fail on systems that already have the latest certificates. The installer works, but the first post-install restart hits a certificate mismatch.
  • Secure Boot misconfiguration: Secure Boot enabled with an incompatible ISO causes boot failures. Disabling it temporarily during installation often resolves the issue.
  • TPM 2.0 disabled: Windows 11 requires TPM 2.0. If UEFI shows it as disabled, the OS cannot start.
  • Legacy/CSM mode active: Installing Windows 11 on a GPT drive while Legacy or CSM mode is on in UEFI creates an unbootable system.
  • Corrupt boot record: The installer occasionally writes a damaged BCD (Boot Configuration Data) or MBR, especially on drives with old partitions from a previous Windows installation.
  • Faulty USB drive: A bad USB drive can write a partially corrupt installation that appears complete but fails to boot.

Fix 1: Re-Create the Installation Media with the Latest ISO

This fix resolves the majority of post-clean-install boot failures. Old install media carries Secure Boot certificates that no longer match updated firmware. Creating fresh media forces the latest certificates onto the drive.

Use the Windows 11 Media Creation Tool from Microsoft’s official website to download the newest ISO and write it to your USB drive. Alternatively, you can use Rufus to create a bootable USB drive with the latest Windows 11 ISO. Rufus gives you extra options to bypass TPM and Secure Boot checks if needed.

After creating the new drive, boot from it and follow the steps to clean install Windows 11 from USB again. Delete all existing partitions on the target drive during setup so the installer creates a clean partition layout from scratch.

Fix 2: Disable Secure Boot Temporarily, Then Re-Enable It After Setup

If you cannot create new media immediately, disabling Secure Boot lets you complete the installation without the certificate conflict. Re-enable it after Windows 11 finishes setting up and installs all updates.

Important: Do not disable Secure Boot before the installation starts. Disable it only after the installer fails on the first post-install restart. If you disable it before the installation begins, Windows 11 may refuse to install, citing a hardware requirements mismatch.

  1. Power on the PC and press Del, F2, or F9 repeatedly to enter UEFI/BIOS. The key varies by manufacturer.
  2. Navigate to the Security or Boot tab.
  3. Find Secure Boot and set it to Disabled.
  4. Save the settings and exit. The PC will restart.
  5. Boot from your USB installation drive when prompted.
  6. Complete the installation and let Windows 11 reach the desktop.
  7. Go to Settings > Windows Update and install all available updates.
  8. Restart the PC, re-enter UEFI, and set Secure Boot back to Enabled.
  9. Save and exit. Windows 11 should now boot normally with Secure Boot active.

Fix 3: Check TPM 2.0 and UEFI Settings

Beyond Secure Boot, other UEFI settings directly affect whether Windows 11 boots after installation.

  1. Enter UEFI/BIOS by pressing Del, F2, or F9 on startup.
  2. Look for TPM under the Security or Advanced tab. If it shows as Disabled, set it to Enabled.
  3. Confirm Secure Boot is set to Enabled (unless you are mid-install and working through Fix 2 above).
  4. Check that Legacy Mode or CSM (Compatibility Support Module) is Disabled. Windows 11 requires UEFI mode.
  5. Verify the Boot Order lists your Windows drive (SSD or HDD) as the first device. If the USB is still at the top, the PC tries to boot from the installer drive instead of Windows.
  6. Save all settings and restart.

Fix 4: Run Startup Repair from the Windows Recovery Environment

If UEFI settings are correct but Windows 11 still does not boot, Startup Repair can fix corrupted boot files written during installation.

To enter the Windows Recovery Environment (WinRE) without a working Windows installation:

Method A: Force WinRE through power cycling

  1. Press and hold the power button for 5 to 7 seconds to force the PC off.
  2. Press the power button to turn it on, then force it off again after a few seconds.
  3. Repeat three to four times. On the next boot, Windows automatically opens the Recovery Environment.

Method B: Boot from your USB installation drive

  1. Insert your bootable USB drive and restart the PC.
  2. At the Install now screen, click Repair your computer at the bottom left.

Once inside the Recovery Environment:

  1. Select Troubleshoot.
  2. Select Advanced options.
  3. Select Startup Repair.
  4. Follow the on-screen instructions and let the tool run.
  5. Restart when it finishes and check if Windows 11 boots.

Fix 5: Rebuild the Boot Record Using Command Prompt

A corrupt BCD or MBR is a direct cause of boot failure after a clean install, especially on drives that previously ran another version of Windows. Rebuilding the boot record from Command Prompt fixes this.

Access Command Prompt from the Recovery Environment (using either method from Fix 4):

  1. Select Troubleshoot > Advanced options > Command Prompt.
  2. Type the following command and press Enter to identify your system volume letter:
BCDEdit

Look for the osdevice entry. Note the drive letter shown (commonly C:).

  1. Run these commands one by one, pressing Enter after each. Replace C with your actual system volume letter if different:
CHKDSK /f C:
DISM /image:C:\ /cleanup-image /restorehealth
SFC /scannow /offbootdir=C:\ /offwindir=C:\windows
  1. After those scans complete, run the bootrec commands:
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
exit
  1. After Command Prompt closes, run Startup Repair once more from Troubleshoot > Advanced options > Startup Repair.
  2. Restart the PC and check if Windows 11 boots.

Fix 6: Boot into Safe Mode to Isolate Driver or Software Conflicts

If Windows 11 gets partially through the boot process but then fails, a driver installed during setup might be the cause. Safe Mode loads Windows with only essential drivers, which lets you confirm whether a background driver or service is blocking the normal boot.

  1. Enter the Recovery Environment using the power cycling method from Fix 4.
  2. Select Troubleshoot > Advanced options > Startup Settings.
  3. Click Restart.
  4. On the Startup Settings screen, press 4 or F4 to enable Safe Mode.
  5. If Windows 11 loads in Safe Mode, a third-party driver or startup program is likely causing the boot failure.
  6. Open Device Manager in Safe Mode and look for any devices showing a yellow warning icon.
  7. Uninstall the flagged driver, restart normally, and let Windows reinstall a compatible version.

Fix 7: Reset Windows 11 from the Recovery Environment

If none of the above fixes work, resetting Windows 11 from the Recovery Environment reinstalls the OS while optionally keeping your personal files. Since this is a fresh clean install, you likely have nothing to preserve, so removing everything gives you the cleanest result.

  1. Enter the Recovery Environment.
  2. Select Troubleshoot.
  3. Select Reset this PC.
  4. Choose Remove everything for the most reliable outcome. This removes all files, apps, and settings and reinstalls Windows 11 cleanly.
  5. Select Local reinstall or Cloud download. Cloud download pulls a fresh copy from Microsoft’s servers and is the better option if you suspect the local install files are damaged.
  6. Follow the on-screen instructions to complete the reset.
  7. After the reset finishes, check if Windows 11 boots and runs correctly.

If the PC still fails to boot after a reset, the problem is likely hardware-related. Check that the SSD or HDD is seated securely. On laptops, a loose storage connector can cause the system to report a boot device not found error instead of loading Windows.

After Your PC Boots Successfully

Once Windows 11 starts normally after any of the above fixes, install all pending updates from Settings > Windows Update before doing anything else. This ensures your system carries the latest Secure Boot certificates and driver packages, which prevents the same boot failure from recurring on your next clean install.

If you notice that applications are not opening after boot in Windows 11 once the desktop loads, that points to a separate shell or user profile issue rather than a boot problem.

Related Guides

Leave a Comment

Comments

No comments yet. Why don’t you start the discussion?

    Leave a Reply