Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.66 KB

changing-the-default-boot-entry.md

File metadata and controls

44 lines (30 loc) · 1.66 KB
title description keywords ms.date
Changing the Default Boot Entry
Changing the Default Boot Entry
default boot entries
Boot.ini files WDK , default boot entries
boot options WDK , default boot entries
identifying boot entry
current boot entry WDK
NVRAM boot options WDK , default boot entries
EFI NVRAM boot options WDK , default boot entries
04/20/2017

Changing the Default Boot Entry

The default boot entry is the entry that the boot loader selects when the boot menu time-out expires. You can change the default boot entry to ensure that the operating system configuration that you prefer is loaded automatically.

For Windows, you can use BCDEdit to change the default boot entry.

Using BCDEdit

You can specify the default boot entry using the /default option. The syntax to specify the default operating system is as follows:

bcdedit /default <ID>

The <ID> is the GUID for the Windows boot loader boot entry that is associated with the operating system that you want to designate as the default. You must include the braces ({ }) around the GUID, for example:

bcdedit /default {cbd971bf-b7b8-4885-951a-fa03044f5d71}

To change the default boot entry to the earlier Windows operating system loader on a multiboot computer, set <ID> to {ntldr}, which is the reserved name for the GUID that is associated with Ntldr. This might present another menu depending on entries in Boot.ini file.

bcdedit /default {ntldr}