Come correggere l’errore 0xc000000f in windows 10 durante l’avvioArtboard

Sembra che il colpevole sia un guasto hardware (disco rigido molto probabilmente) o un settore di avvio difettoso.

Bene, hai sicuramente bisogno di un disco di ripristino di windows ma prima di fare qualsiasi cosa, assicurati che il tuo disco rigido funzioni controllando le connessioni o collegandolo a qualche altro portatile. Se è tutto a posto, allora sei a posto.

Seguendo la ricerca, ci sono alcune soluzioni che ho trovato e ho cercato di coprirle tutte, controlla se qualcuna funziona per te.

Soluzione 1. Ricostruisci il BCD usando bootrec.exe

Questa soluzione ha bisogno del tuo disco di installazione di Windows per poter accedere a bootrec.exe. Questo è uno strumento costruito in Windows RE (Windows Recovery Environment). bootrec è un programma che può riparare i dati di configurazione di avvio e i master boot record.

  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.