2026-01-16, 03:08 PM
(This post was last modified: 2026-01-16, 03:10 PM by mvallevand.)
I just noted that my main Windows PC has a BIOS update and followed up to find out that my BIOS will need to be updated to run with Secure Boot after June 2026. I found this site pretty informative https://windowsforum.com/threads/secure-...in.397238/ so if you use Secure Boot you might to read it. The tl;dr version is trying running this in a powershell admin to see if it is True or False.
I confirmed I had a failing string
Martin
Code:
[System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI db).bytes) -match 'Windows UEFI CA 2023'
FalseI confirmed I had a failing string
Code:
[System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI db).bytes) -match 'Microsoft Corporation UEFI CA 2011'
TrueMartin