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:

  1. Insert the installation USB or disk and restart your computer.
  2. Boot from the installation media by selecting it in BIOS or UEFI.
  3. On the Windows setup screen, choose “Repair your computer”, then go to “Troubleshoot” and select “Command Prompt”.
  4. In the Command Prompt, enter the following commands one by one, pressing Enter after each:
        bootrec /fixmbr
        bootrec /fixboot
        bootrec /scanos
        bootrec /rebuildbcd
        
  5. 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:

  1. Restart the computer and press F8 or Shift + F8 repeatedly to access the Windows Recovery menu.
  2. Select “Troubleshoot” and then “Startup Repair”.
  3. 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:

  1. Open Command Prompt through the installation media as described above.
  2. Enter the following command:
    chkdsk C: /f /r
  3. 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:

  1. In Command Prompt, type sfc /scannow and press Enter.
  2. Wait while the system scans and fixes any detected errors.
  3. If the issue persists, try the following command:
    DISM /Online /Cleanup-Image /RestoreHealth