Hi All,
I have an ASUS X99-Deluxe mainboard that will not update the SecureBoot Certificates to 2023 using Windows Update.
I was able to download the following files with PowerShell and put them on an USB stick using:
Create a temporary folder
New-Item -ItemType Directory -Force -Path "C:\SecureBootUpdate"
Download the 2023 DB Certificate
Invoke-WebRequest -Uri "https://github.com/microsoft/secureboot_objects/raw/main/PostSignedObjects/Optional/DB/amd64/DBUpdate3P2023.bin" -OutFile "C:\SecureBootUpdate\DBUpdate3P2023.bin"
Download the 2023 KEK Certificate
Invoke-WebRequest -Uri "https://github.com/microsoft/secureboot_objects/raw/main/PostSignedObjects/KEK/Microsoft/KEKUpdate_Microsoft_PK1.bin" -OutFile "C:\SecureBootUpdate\KEKUpdate_Microsoft_PK1.bin"
PowerShell fails to update these keys with error (0xC0000022).
My tried workaround:
The DBUpdate3P2023.bin updates fine from within BIOS from the stick, Good!
The KEKUpdate_Microsoft_PK1.bin file fails to load within BIOS, I found some info to convert this file to a format that support ASUS (cannot find back to that article anymore) but the conversion had to be made using Linux (not my operating system in use).
Anyone seen this same behavior and can suggest the path forward?
Any advice is welcome,
Thanks a lot,
//Ase
Hi All,
I have an ASUS X99-Deluxe mainboard that will not update the SecureBoot Certificates to 2023 using Windows Update.
I was able to download the following files with PowerShell and put them on an USB stick using:
Create a temporary folder
New-Item -ItemType Directory -Force -Path "C:\SecureBootUpdate"
Download the 2023 DB Certificate
Invoke-WebRequest -Uri "https://github.com/microsoft/secureboot_objects/raw/main/PostSignedObjects/Optional/DB/amd64/DBUpdate3P2023.bin" -OutFile "C:\SecureBootUpdate\DBUpdate3P2023.bin"
Download the 2023 KEK Certificate
Invoke-WebRequest -Uri "https://github.com/microsoft/secureboot_objects/raw/main/PostSignedObjects/KEK/Microsoft/KEKUpdate_Microsoft_PK1.bin" -OutFile "C:\SecureBootUpdate\KEKUpdate_Microsoft_PK1.bin"
PowerShell fails to update these keys with error (0xC0000022).
My tried workaround:
The DBUpdate3P2023.bin updates fine from within BIOS from the stick, Good!
The KEKUpdate_Microsoft_PK1.bin file fails to load within BIOS, I found some info to convert this file to a format that support ASUS (cannot find back to that article anymore) but the conversion had to be made using Linux (not my operating system in use).
Anyone seen this same behavior and can suggest the path forward?
Any advice is welcome,
Thanks a lot,
//Ase