manual installation of 2023 secure boot certificate

Noureddine Fettach 0 Reputation points
2026-08-05T21:50:52.2566667+00:00
Windows for home | Windows 11 | Security and privacy
0 comments No comments

2 answers

Sort by: Most helpful
  1. Ivan B 120K Reputation points Independent Advisor
    2026-08-05T22:38:11.53+00:00

    Hi,

    In this case, you usually have to wait for the BIOS updates to come with the updated keys.

    Search for msinfo32.exe in the search bar, take a screenshot, and post it here so we can see the correct laptop model or desktop configuration.

    Thanks

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-08-05T21:51:13.6866667+00:00

    For a Windows 11 Home device, manual installation is not generally the recommended path unless the device supports the update path and has the required firmware support.

    Supported facts:

    • The 2011 Secure Boot certificates begin expiring in June 2026.
    • Devices that are not updated will usually still boot and continue receiving normal Windows updates.
    • Without the newer 2023 certificates, devices may not receive future Secure Boot protections for early boot components.
    • Most devices receive the updated certificates automatically through Windows Update, and some also require OEM firmware updates.

    If a manual deployment is being attempted on Windows:

    1. Install a Windows update released on or after February 13, 2024.
    2. Open an elevated Command Prompt.
    3. Set the registry value to deploy the DB update:
         reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Secureboot /v AvailableUpdates /t REG_DWORD /d 0x40 /f
      
    4. Trigger the scheduled task:
         Start-ScheduledTask -TaskName "\Microsoft\Windows\PI\Secure-Boot-Update"
      
    5. Restart the device. In some cases, a second restart is required.
    6. Verify the DB update in an elevated PowerShell window:
         [System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI db).bytes) -match 'Windows UEFI CA 2023'
      
      The expected result is True.

    Important cautions:

    • This update is known to have compatibility issues on some devices, so Microsoft recommends testing carefully before broad rollout.
    • If BitLocker is enabled, back up the BitLocker recovery key before making Secure Boot changes.
    • Some devices need OEM firmware support. If the device manufacturer does not provide the required firmware or certificate support, there is no supported way to manually inject a standalone 2023 Secure Boot certificate.

    For consumer PCs, the practical path is:

    • install all current Windows updates
    • install the latest BIOS/UEFI or firmware update from the device manufacturer
    • then verify whether Windows UEFI CA 2023 is present

    If the OEM has not provided support for that hardware, the device can usually continue to boot normally, but it may not receive future Secure Boot boot-level protections.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.