Error 0xc0000098 on Windows Boot: How to Fix
Error 0xc0000098 indicates that there is an issue with the boot process in Windows, typically caused by missing or corrupt Boot Configuration Data (BCD). This file is essential for the system to boot properly, and if it's damaged, the system won't start. Let’s go over the main methods to resolve this issue.
1. Repair Boot Configuration Data (BCD)
The first step in fixing error 0xc0000098 is to repair the BCD. You'll need to boot from a Windows installation disk or USB drive and access the recovery options.
- Insert the installation media and restart your computer.
- Enter the BIOS/UEFI and set it to boot from the USB drive or disk.
- On the Windows installation screen, choose "Repair your computer".
- Navigate to "Troubleshoot" -> "Advanced options" -> "Command Prompt".
- In the Command Prompt, type the following commands one by one, pressing Enter after each:
bootrec /scanos
bootrec /rebuildbcd
bootrec /fixmbr
bootrec /fixboot
After executing these commands, restart your computer to see if the issue is resolved.
2. Check System File Integrity
Corrupt system files can also lead to error 0xc0000098. To verify the integrity of these files, use the System File Checker (SFC).
- Boot from the installation media and open the Command Prompt as described above.
- Enter the command:
sfc /scannow
and wait for the scan to complete.
This command will check for corrupt system files and replace them if necessary.
3. System Restore
If the error occurred after a recent update or installation, try restoring the system to a previous state using a restore point.
- Boot from the installation media and select "Repair your computer".
- Go to "Troubleshoot" -> "Advanced options" -> "System Restore".
- Follow the on-screen instructions to select a restore point and revert your system to a working state.
4. Check the Hard Drive
Error 0xc0000098 could be caused by issues with the hard drive. To check the disk, use the chkdsk
command.
- Boot from the installation media and open the Command Prompt.
- Enter the command:
chkdsk /f /r
and wait for the scan to finish.
This command will check for disk errors and fix them if found.
5. Reinstall Windows
If none of the above solutions work, you may need to reinstall the operating system. Be sure to back up any important data if possible before proceeding.
To reinstall Windows:
- Boot from the installation media.
- Select "Install Windows" and follow the on-screen instructions.
Once the installation is complete, check if the error is resolved.