How to Fix Error 0xc000014c When Booting Windows 10
Error 0xc000014c during Windows 10 startup generally points to an issue with the system’s boot files. This can happen for various reasons, such as corrupted system files, registry errors, or improper hardware configuration changes. In this guide, we’ll explore the primary methods for resolving this issue.
Causes of Error 0xc000014c
- Corruption of the boot sector or Boot Configuration Data (BCD) files.
- Failures in the hard drive or solid-state drive (SSD).
- Improper adjustments in BIOS or UEFI settings.
- Power interruption during updates or system installation.
Methods to Fix Error 0xc000014c
1. Repair Boot Files Using Command Prompt
You’ll need a Windows 10 installation media to repair the boot files. Follow these steps:
- Insert the installation USB or disk and restart your computer.
- Boot from the installation media by selecting it in BIOS or UEFI.
- On the Windows setup screen, choose “Repair your computer”, then go to “Troubleshoot” and select “Command Prompt”.
- In the Command Prompt, enter the following commands one by one, pressing Enter after each:
bootrec /fixmbr bootrec /fixboot bootrec /scanos bootrec /rebuildbcd
- Once done, close the Command Prompt and restart your computer.
2. Use Startup Repair Tool
Windows 10 includes built-in repair tools that can address error 0xc000014c:
- Restart the computer and press F8 or Shift + F8 repeatedly to access the Windows Recovery menu.
- Select “Troubleshoot” and then “Startup Repair”.
- Follow the on-screen instructions to complete the repair process.
3. Check the Disk for Errors
A faulty hard drive may be the cause of error 0xc000014c. Check the disk for errors using Command Prompt:
- Open Command Prompt through the installation media as described above.
- Enter the following command:
chkdsk C: /f /r
- This command will scan the disk and automatically fix any errors found. The process might take some time, especially on larger drives.
4. Restore System Files with SFC and DISM Commands
The SFC and DISM commands can help restore corrupted system files:
- In Command Prompt, type
sfc /scannow
and press Enter. - Wait while the system scans and fixes any detected errors.
- If the issue persists, try the following command:
DISM /Online /Cleanup-Image /RestoreHealth