
How to fix 0xc0000098 BCD boot error
June 19, 2026The 0xc0000225 error is a Windows boot failure that appears when your system cannot locate or load the required Boot Configuration Data (BCD). When this happens, Windows stops during startup and displays the message “Windows failed to start.”
This issue affects systems running Microsoft Windows 10 and Windows 11. It is usually caused by missing boot files, corrupted system data, or disk errors.
Although it looks serious, this error can often be fixed using built-in recovery tools without reinstalling Windows.
What Causes 0xc0000225 Error?
The 0xc0000225 error occurs when Windows cannot access the boot configuration files required to start the operating system.
Common causes include:
- Corrupted or missing BCD file
- Failed Windows update
- Disk errors or bad sectors
- Incorrect shutdown or power failure
- Damaged system files
- Malware infection
- Cloning or resizing partitions incorrectly
- EFI or boot partition issues
How to Fix 0xc0000225 Windows Failed to Start Error
1. Enter Windows Recovery Environment (WinRE)
To begin troubleshooting:
- Turn your PC on and off 3 times during boot
- Or use a Windows installation USB
- Select Repair your computer
Then navigate to:
Troubleshoot → Advanced options
2. Run Startup Repair
Startup Repair is the first and easiest fix.
Steps:
- Go to Advanced options
- Select Startup Repair
- Choose your Windows installation
Windows will automatically scan and attempt to repair boot issues.
3. Rebuild BCD Using Command Prompt
If Startup Repair fails, rebuild the Boot Configuration Data manually.
Open Command Prompt and run:
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
These commands repair the master boot record and rebuild the boot configuration database.
4. Run SFC and DISM Repair Tools
Corrupted system files can also trigger this error.
Run:
sfc /scannow
Then:
DISM /Online /Cleanup-Image /RestoreHealth
If Windows cannot boot normally, use offline mode:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
These tools repair damaged system files and restore system integrity.
5. Check Disk for Errors
Hard drive corruption can break boot files.
Run:
chkdsk C: /f /r
This command scans the disk and repairs bad sectors and file system issues.
6. Repair EFI Boot (UEFI Systems)
For UEFI systems, the EFI partition may need repair.
Steps:
- Open Diskpart:
diskpart
- List volumes:
list volume
- Assign letter to EFI partition:
select volume X
assign letter=Z
- Rebuild boot files:
bcdboot C:\Windows /s Z: /f UEFI
This restores missing EFI boot data.
7. Use System Restore
If the issue started recently:
- Go to System Restore
- Select a restore point before the error occurred
- Restore system settings without affecting personal files
This is one of the fastest recovery methods.
8. Repair Install or Reset Windows
If nothing works:
- Use Repair Install (In-place upgrade) to keep files and apps
- Or choose Reset This PC for a fresh Windows installation
These options are effective for severe system corruption.


