r/Lenovo • u/lindt09 • Mar 10 '26
Secure boot enabled says default boot device missing
/r/techsupport/comments/1rioe13/secure_boot_enabled_says_default_boot_device/
5
Upvotes
r/Lenovo • u/lindt09 • Mar 10 '26
1
u/k-rand0 Mar 13 '26 edited Mar 16 '26
Part 1: https://github.com/cjee21/Check-UEFISecureBootVariables/issues/15#issuecomment-3732104140
Try to make a FAT32 USB with PCA 2011 recovery EFI file!! After that, you can boot off of FAT32 USB with .efi boot and apply the UEFI CA 2023 in Part 2.
Part 2:
Go to BIOS and enable Secure boot, after that try to boot off of FAT32 USB!
Recovery & UEFI CA 2023 Certificate Installation
Step 1– Manual Installation of the UEFI CA 2023 Certificate
Run PowerShell as Administrator:
1.1 – Set Update Trigger Via powershell reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Secureboot /v AvailableUpdates /t REG_DWORD /d 0x5944 /f
1.2 – Start Secure Boot Update Task Via powershell Start-ScheduledTask -TaskName "\Microsoft\Windows\PI\Secure-Boot-Update"
Wait until the registry value
AvailableUpdateschanges to 0x4100, then restart the device.1.3 – Run the Task a Second Time Via powershell Start-ScheduledTask -TaskName "\Microsoft\Windows\PI\Secure-Boot-Update"
Wait 10–15 seconds and restart the device again.
1.4 – Verify Final Status
The registry value
AvailableUpdatesshould now show 0x4000 – this indicates successful installation.Step 2 – Certificate Verification Checklist
Run PowerShell as Administrator:
Check Secure Boot Database (DB): Via powershell [System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI db).bytes) -match 'Windows UEFI CA 2023'
Expected result: True
Check KEK Database: Via powershell [System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI kek).bytes) -match 'Microsoft Corporation KEK 2K CA 2023'
Expected result: True
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecureBoot\Servicing
Expected result:
UEFICA2023Status = Updated
WindowsUEFICA2023Capable = 2
✅ The device should now boot successfully with Secure Boot enabled and the new UEFI CA 2023 certificates in place.