01

Issue

Windows Boot Manager names \Windows\System32\winload.efi and reports that the application or operating system could not be loaded. The loader file may be missing, corrupt, fail integrity validation, or be referenced incorrectly by BCD.

Searchable Windows error codes and exact messages

Windows Recovery codeWindows status nameWhen it can apply
0xc000000fSTATUS_NO_SUCH_FILEwinload.efi or another required loader path cannot be found.
0xc000000eSTATUS_NO_SUCH_DEVICEBCD points to the wrong device or partition even though the loader path is displayed.
0xc0000098STATUS_FILE_INVALIDThe loader reference or named boot file is invalid. Confirm whether the BCD entry or file integrity is at fault.
0xc0000225STATUS_NOT_FOUNDThe loader, its device, or another required boot object cannot be found.
0xc0000221STATUS_IMAGE_CHECKSUM_MISMATCHThe named loader or another system image fails its checksum. Use FIX-018 when checksum failure is the displayed diagnosis.
0xc0000428STATUS_INVALID_IMAGE_HASHWindows cannot verify the digital signature or hash of the named file. Treat this as an integrity/signature branch, not a simple missing-file repair.

Useful exact searches include File: \Windows\System32\winload.efi, The application or operating system couldn't be loaded because a required file is missing or contains errors, and Windows cannot verify the digital signature for this file. Always search the code, exact file, and exact message together.

02

Applies when

Use this procedure when the Recovery screen names winload.efi, the Windows volume is readable, and inspection shows either a missing/damaged file or an incorrect BCD loader path.

03

Does not apply when

Do not use it when the drive is absent, BCD itself is the only named failure, Secure Boot rejects a newly installed non-Microsoft loader, or multiple unrelated system files fail checksums. Multiple changing files point toward storage or memory instability.

04

Information that may remain unknown

The exact Windows build may remain unknown for BCD correction and ordinary offline SFC. It becomes mandatory if DISM requires matching installation media or a known-good repair source.

05

Requirements

  • Windows Recovery Environment or installation media
  • Command Prompt
  • Readable Windows and system partitions
  • Matching Windows installation media only if offline component repair requires a source
06

Starting position

Open Repair your computer > Troubleshoot > Advanced options > Command Prompt. Detect the Windows volume as W: and the system partition as S: before running repair commands.

07

Confirm the diagnosis

  1. Record the code, message, and full winload.efi path.

  2. Detect and map the volumes:

    diskpart
    list disk
    list volume
    select volume <Windows-volume-number>
    detail volume
    assign letter=W
    select disk <Windows-disk-number>
    list partition
    select partition <system-partition-number>
    detail partition
    assign letter=S
    exit
    
  3. Inspect the loader files:

    dir W:\Windows\System32\winload.*
    
  4. Confirm whether winload.efi exists and has a plausible nonzero size. Do not conclude that it is valid solely because it exists.

  5. On UEFI/GPT systems, inspect the BCD loader path:

    bcdedit /store S:\EFI\Microsoft\Boot\BCD /enum osloader /v
    
  6. On BIOS/MBR systems, use:

    bcdedit /store S:\Boot\BCD /enum osloader /v
    
  7. For the intended loader, record device, osdevice, path, and systemroot. A normal UEFI loader path is \Windows\System32\winload.efi. A BIOS/MBR installation normally uses winload.exe; a screen that specifically names winload.efi is itself evidence of the UEFI path.

  8. Classify the failure:

    • File absent: Proceed to offline system-file repair.
    • File exists but BCD path/device is wrong: Proceed to BCD/boot-file reconstruction.
    • File exists and the screen reports checksum or signature failure: Use the integrity branch and prepare matching repair media.
    • Different files fail on successive boots: Stop and test storage and memory before replacing files.
08

Resolution steps

Branch A — Repair the protected loader file

  1. Run offline System File Checker against the detected installation:

    sfc /scannow /offbootdir=W:\ /offwindir=W:\Windows
    
  2. Record the final SFC message.

  3. If SFC reports that it repaired files, confirm winload.efi now exists:

    dir W:\Windows\System32\winload.efi
    
  4. Restart and test.

  5. If SFC cannot repair the file, do not download a replacement. Obtain Windows media matching the installed architecture, edition, language, and build closely enough to service that installation, then use the matching-source process in FIX-018.

Branch B — Repair an incorrect UEFI BCD reference

  1. Create a backup directory and preserve BCD:

    md W:\BootRepairBackup
    copy S:\EFI\Microsoft\Boot\BCD W:\BootRepairBackup\BCD-before-winload-repair
    
  2. Recreate UEFI boot files and loader references:

    bcdboot W:\Windows /s S: /f UEFI /v
    
  3. Re-enumerate the store and confirm the loader path:

    bcdedit /store S:\EFI\Microsoft\Boot\BCD /enum osloader /v
    
  4. Restart twice.

Branch C — Repair an incorrect BIOS/MBR loader reference

  1. Preserve BCD:

    md W:\BootRepairBackup
    copy S:\Boot\BCD W:\BootRepairBackup\BCD-before-winload-repair
    
  2. Recreate BIOS boot files:

    bcdboot W:\Windows /s S: /f BIOS /v
    
  3. Restart twice.

09

Expected results and branches

  • SFC repairs winload.efi and Windows starts: The protected loader file was damaged or missing.
  • BCDBoot corrects the loader path and Windows starts: The BCD reference, not the file content, was wrong.
  • SFC cannot repair the file: Matching repair content is required; continue with FIX-018's DISM source procedure.
  • 0xc0000221 or 0xc0000428 remains: Treat the problem as checksum/signature failure and verify the named file, source match, storage, and RAM.
  • WinRE cannot read W: reliably: Stop. Repairing a loader file is inappropriate until the storage path is stable.
10

Do not do this

  • Do not download winload.efi from a file-replacement website.
  • Do not copy winload.efi from a different PC or arbitrary Windows build.
  • Do not disable Secure Boot or signature enforcement as a permanent workaround.
  • Do not rebuild BCD if the existing loader path is already correct and the file fails integrity checks.
  • Do not assume C: is the offline Windows volume.
11

Rollback

SFC does not provide a simple per-file undo; preserve logs and use System Restore if its repair makes the condition worse. If BCDBoot removed an intentional loader, restore the saved BCD file from W:\BootRepairBackup to its original system-partition path.

12

Verification

  • Windows starts twice without naming winload.efi.
  • W:\Windows\System32\winload.efi exists and Windows accepts its integrity.
  • The active BCD loader points to the intended Windows device, systemroot, and loader path.
  • SFC reports no remaining integrity violations after Windows becomes usable.
  • The error does not change among multiple unrelated system files.
13

Confidence and stop conditions

Confidence is approximately 85% when the screen names winload.efi and inspection proves either a missing file or incorrect BCD path. Stop when multiple files fail, matching repair content is unavailable, the storage path is unstable, or the failure persists after both file and BCD verification.