Solution 1. Rebuild the BCD using bootrec.exe
This fix needs your Windows installation disc so you can access bootrec.exe
. This is a tool built in Windows RE (Windows Recovery Environment). bootrec is a program that can repair boot configuration data and master boot records.
- Insert your Windows install disc
- Restart your computer and boot from the disc
- Press any key when the “Press any key to boot from CD or DVD” message appears
- Select Repair your computer after you select your language, time and keyboard method preferences
- Select your Windows installation drive (which is usually
C:\
) and click Next - Choose Command Prompt when the System Recovery Options box appears
- Type in this command: bootrec /rebuildbcd
- 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:
attrib -r -s -h c:\boot\bcd
– unhide BCD so it can be deleteddel c:\boot\bcd
– delete the current BCDbcdboot 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:\boot\bcd bcd.old
· bootrec /RebuildBcd
Hope it helps.