A Brief But Accurate Documentation, BSD Linux And Programming

 Docker

Tuesday, August 24, 2021

How to remove UEFI boot entries

 If you would like to remove it from Linux there is the solution

Fires up a terminal and type the following

        efibootmgr -v 

it shows, the highlighted value is the id to remove the entries.

BootCurrent: 0000
Timeout: 0 seconds
BootOrder: 0000,0007,0008
Boot0000* Pop!_OS 21.04 HD(1,GPT,8bf6e121-caa9-4812-90b4-fa6e206c83eb,0x800,0x1027ff)/File(\EFI\systemd\systemd-bootx64.efi)

Boot0007* Internal Hard Disk PciRoot(0x0)/Pci(0x2,0x4)/Pci(0x0,0x0)/NVMe(0x1,00-1B-44-8B-49-3F-D4-41)/HD(1,GPT,8bf6e121-caa9-4812-90b4-fa6e206c83eb,0x800,0x1027ff)..BO

Boot0008* USB Drive (UEFI) - APS-SL3N-120 0 PciRoot(0x0)/Pci(0x8,0x1)/Pci(0x0,0x3)/USB(4,0)/HD(1,GPT,7763fc22-2fb7-4391-9f19-9618f27d2f6a,0xffff,0xff1b9)..BO

    
To remove a boot entry type      efibootmgr -b 0002 -B   and replace the 0002 with the entry id's that you intended to remove


Remove from Windows CMD not powershell::

bcdedit /enum firmware


Then it shows the entry list, and we must delete with the identifier id like so:

bcdedit /delete {f94c2646-0636-11ec-a9d3-c67bffde298a}



No comments:

Post a Comment

Back to top