Skip to content

Instantly share code, notes, and snippets.

@villadora
Created March 26, 2013 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save villadora/5242769 to your computer and use it in GitHub Desktop.
Save villadora/5242769 to your computer and use it in GitHub Desktop.

Boot Configuration Data

Boot Configuration Data (BCD) is a firmware-independent database for boot-time configuration data. It replaces the boot.ini that was used by NTLDR, and is used by Microsoft's new Windows Boot Manager.

Boot Configuration Data are stored in a data file that has the same format as the Windows Registry.[1] The file is located either on the EFI System Partition (on machines that use Extensible Firmware Interface firmware) or in \Boot\Bcd on the system volume (on machines that use IBM PC compatible firmware).

Boot Configuration Data may be altered using a command-line tool (bcdedit.exe), using Registry Editor (regedit.exe), using Windows Management Instrumentation, or with third party tools like EasyBCD.

Boot Configuration Data contain the menu entries that are presented by the Windows Boot Manager, just as boot.ini contained the menu entries that were presented by NTLDR. These menu entries can include:

  1. Options to boot Windows Vista by invoking winload.exe.
  2. Options to resume Windows Vista from hibernation by invoking winresume.exe.
  3. Options to boot a prior version of the Windows NT family by invoking its NTLDR.
  4. Options to load and to execute a volume boot record.

Boot Configuration Data allows for third party integration so anyone can implement tools like diagnostics or recovery options.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment