Hi,
To check if you have updated your keys, just follow the procedure below:
Open a PowerShell console and make sure PowerShell is running as an administrator before running the following commands:
Imposta la chiave di registro su Set-ItemProperty -Path “HKLM:\SYSTEM\CurrentControlSet\Control\SecureBoot” -Name “AvailableUpdates” -Value 0x40
Run the following scheduled task as Start-ScheduledTask -TaskName "\Microsoft\Windows\PI\Secure-Boot-Update"
Restart your computer twice after running these commands to verify that your computer starts with the updated database.
To verify that the Secure Boot database upgrade was successful, open a PowerShell console and make sure PowerShell is running as an administrator before running the following command: [System.Text.Encoding]::ASCII. GetString((Get-SecureBootUEFI db).bytes) -match 'Windows UEFI CA 2023'
Check if the result is true;
If it says true, just wait for the update. If it takes longer than I mentioned and hasn't updated, perhaps the keys are in a BIOS file for update, so you would have to check if the motherboard manufacturer released a BIOS update with the updated keys.
If it doesn't update after a while, you would have to update the BIOS to update the keys. If you want, we can try the update?
Thanks