Windows Secure Boot certificates are reaching their End of Life starting June 2026.
If you have not updated your UEFI CA certificates, your PC's boot-level security is about to expire.
This repository provides a simple guide and a ready-to-use .reg file to manually trigger the update — no advanced IT skills required.
| Phase | Date | What Expires |
|---|---|---|
| Initial | June 2026 | Microsoft Corporation KEK CA 2011 & UEFI CA 2011 |
| Final enforcement | October 2026 | Windows Production PCA 2011 (bootloader signing cert) |
📖 Official Microsoft source: Act now: Secure Boot certificates expire in June 2026
Open PowerShell as Administrator and run:
[System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI db).bytes) -match 'Windows UEFI CA 2023'- True = You are already updated. Nothing more to do! ✅
- False = Continue to Step 2 below.
- Download
Boot-Certificate-Available-Updates.regfrom this repository - Double-click the file
- Click Yes when prompted by Windows
- Continue to Step 3
Open PowerShell as Administrator and run:
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Secureboot /v AvailableUpdates /t REG_DWORD /d 0x5944 /fOpen PowerShell as Administrator and run:
Start-ScheduledTask -TaskName "\Microsoft\Windows\PI\Secure-Boot-Update"This is the most important step. You must restart your PC two times for the update to fully apply.
After restarting twice, open PowerShell as Administrator and run the check again:
[System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI db).bytes) -match 'Windows UEFI CA 2023'- True = Successfully updated! ✅
- False = Repeat from Step 2 or check Microsoft's official guidance.
Microsoft's official documentation references this value as MicrosoftUpdateManagedOptIn in enterprise scenarios.
The key used here, AvailableUpdates, applies the same registry path and hex value (0x5944) and produces the same result for home and manual update scenarios.
| File | Description |
|---|---|
Boot-Certificate-Available-Updates.reg |
Ready-to-use registry file to trigger the Secure Boot certificate update |
Windows-Secure-Boot-is-EXPIRING-Do-This-Before-June-2026.txt |
Plain-text guide with all steps |