Cómo corregir el error 0xc000000f en windows 10 al arrancarArtboard

Parece que el culpable es un fallo de hardware (disco duro muy probablemente) o un sector de arranque defectuoso.

Bueno, seguro que necesitas un disco de recuperación de windows pero antes de hacer nada, asegúrate de que tu disco duro funciona comprobando las conexiones o enchufándolo en algún otro portátil. Si eso está bien, entonces usted es bueno para ir.

Al buscar, los siguientes son algunas soluciones que encontré y traté de cubrir todos ellos, comprobar si alguno funciona para usted.

Solución 1. Reconstruir el BCD usando bootrec.exe

Esta solución necesita tu disco de instalación de Windows para que puedas acceder a bootrec.exe. Esta es una herramienta incorporada en Windows RE (Windows Recovery Environment). bootrec es un programa que puede reparar los datos de configuración de arranque y los registros de arranque maestro.

  1. Insert your Windows install disc
  2. Restart your computer and boot from the disc
  3. Press any key when the “Press any key to boot from CD or DVD” message appears
  4. Select Repair your computer after you select your language, time and keyboard method preferences
  5. Select your Windows installation drive (which is usually C:) and click Next
  6. Choose Command Prompt when the System Recovery Options box appears
  7. Type in this command: bootrec /rebuildbcd
  8. Press Enter

Wait for the process to wait, remove the disc and restart your computer

NOTE: In case system partition is corrupted, do these in place of step 7:

  1. attrib -r -s -h c:bootbcd - unhide BCD so it can be deleted
  2. del c:bootbcd - delete the current BCD
  3. bcdboot C:windows - create a new BCD on the C drive

Solution 2. This was on Microsoft’s official website :

If rebuilding the BCD does not resolve the startup issue, you can export and delete the BCD, and then run this option again. By doing this, you make sure that the BCD is completely rebuilt. To do this, type the following commands at the Windows RE command prompt:

· bcdedit /export C:BCD_Backup

· c:

· cd boot

· attrib bcd -s -h -r

· ren c:bootbcd bcd.old

· bootrec /RebuildBcd

Hope it helps.