Error message when you start Windows Vista: "The Windows Boot Configuration Data file is missing required information"

Resolution :

Method 1: Repair the BCD store by using the Startup Repair option

Boot from the vista dvd >> Repair your computer >> System Recovery Options >> Startup Repair >> restart the computer


Method 2: Rebuild the BCD store by using the Bootrec.exe tool

Boot from the vista dvd >> Repair your computer >> System Recovery Options >> Command Prompt >> Bootrec /RebuildBcd

If the Bootrec.exe tool runs successfully, it presents you with an installation path of a Windows directory. To add the entry to the BCD store, type Yes. A confirmation message appears that indicates the entry was added successfully
If the Bootrec.exe tool cannot locate any missing Windows installations, you must remove the BCD store, and then you must re-create it. To do this, type the following commands in the order in which they are presented. Press ENTER after each command.

Bcdedit /export C:\BCD_Backup
ren c:\boot\bcd bcd.old
Bootrec /rebuildbcd
Restart
the computer


Method 3: Rebuild the BCD store manually by using the Bcdedit.exe tool

Boot from the vista dvd >> Repair your computer >> System Recovery Options >> Command Prompt
cd /d Partition:\Windows\System32
bcdedit /enum all
(In the Windows Boot Loader section of the output from this command, note the GUID that is listed for resumeobject. You will use this GUID later.)
bcdedit -create {bootmgr} -d "Description" (Description represents the description for the new entry.)
bcdedit -set {bootmgr} device partition=Partition: (Partition represents the letter of the partition. Typically, the letter is C)
bcdedit /displayorder {GUID} (GUID represents the GUID that you obtained in the earlier step)
bcdedit /default {GUID} (GUID represents the GUID that you obtained in the earlier step)
bcdedit /timeout Value (Value represents the time in seconds before the Windows Boot Manager selects the default entry that you created in the earlier step)
Restart the computer