Hi,
It would be a good idea to check Windows Update to see if there are any pending or optional updates.
Run the command following:
Open a PowerShell console and ensure PowerShell is running as administrator before executing the following commands:
Force the registry key: Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\SecureBoot" -Name 'AvailableUpdates' -Value 0x40
Run the scheduled task: Start-ScheduledTask -TaskName "\Microsoft\Windows\PI\Secure-Boot-Update"
Restart your computer twice after running these commands to verify that it boots up with the updated database.
To verify if the Secure Boot database update was successful, open a PowerShell console and ensure PowerShell is running as administrator before executing the following command: [System.Text.Encoding]::ASCII.GetString((Get-SecureBootUEFI db).bytes)` matches `'Windows UEFI CA 2023'
Check if the result is true;
After that, access the BIOS, go to the Secure Boot tab, take a photo, and post it here.
Thanks.