To resolve Windows 10 error code 0xc0000142 (Cannot access BCD storage), you can perform the following steps: Repair BCD storage: Use the command prompt to run the bootrec command. Rebuild the BCD store: Use the command prompt again to run the bcdedit command. Repair the boot sector: Enter the bootsect command. Scan and repair damaged files: Run sfc /scannow. Reset BIOS settings: Select "Load Default Settings" in the BIOS menu.
How to resolve Windows 10 error code 0xc0000142
When Windows 10 cannot access the Boot Configuration Data (BCD) storage , error code 0xc0000142 will appear. This prevents the operating system from starting correctly. Here are the steps on how to resolve this issue:
Step 1: Repair BCD Storage
<code>bootrec /fixmbr bootrec /fixboot bootrec /rebuildbcd</code>
Step 2: Rebuild the BCD Storage
If Step 1 does not work, you need to rebuild the BCD store:
<code>bcdedit /export C:\bcdbackup bcdedit /deletevalue {default} safeboot bcdedit /deletevalue {default} bootstatuspolicy bcdedit /deletevalue {default} recoverysequence bcdedit /deletevalue {default} bootmenupolicy bcdboot C:\Windows /l en-us /s C: /f ALL</code>
Step 3: Repair the boot sector
If neither step 1 nor step 2 works, you may need to repair the boot sector:
<code>bootsect /nt60 Sys bootsect /nt60 Sys /mbr</code>
Step 4: Scan and Repair Corrupted Files
<code>sfc /scannow</code>
Step 5: Reset BIOS Settings
These steps are usually enough to resolve Windows 10 error code 0xc0000142. If you're still experiencing problems, you may need to reinstall your operating system or contact Microsoft Support for further assistance.
The above is the detailed content of How to solve win10 prompt 0xc0000142. For more information, please follow other related articles on the PHP Chinese website!