1. Linux

efibootmgr

2. Windows

2.1. One-Time Boot Sequence

Identify Boot Entry GUIDs.

  • Enter the following commands Command Prompt with administrative privileges.

    bcdedit.exe /enum {fwbootmgr}
    Firmware Boot Manager
    ---------------------
    identifier              {fwbootmgr}
    displayorder            {efb98554-2580-11f0-87a0-806e6f6e6963}
                            {bootmgr}
                            {4a6d7797-698a-11ef-aae5-eea1e067e219}
                            {4a6d778f-698a-11ef-aae5-eea1e067e219}
                            {4a6d7790-698a-11ef-aae5-eea1e067e219}
                            {4a6d7791-698a-11ef-aae5-eea1e067e219}
                            {4a6d7792-698a-11ef-aae5-eea1e067e219}
                            {4a6d7793-698a-11ef-aae5-eea1e067e219}
                            {4a6d7794-698a-11ef-aae5-eea1e067e219}
    timeout                 5

Set a specific boot entry to the default for the next boot. This will only affect the next boot, and the boot order reverts to its previous state afterwards.

  • Enter the following commands Command Prompt with administrative privileges.

    bcdedit.exe /set {fwbootmgr} bootsequence {GUID}
    
    # Boot one-time to Debian on TBHFWS-IT03.
    bcdedit.exe /set {fwbootmgr} bootsequence {efb98554-2580-11f0-87a0-806e6f6e6963}