Hello Gatere, I am Henry and I want to share my insight about this issue.
There is no single "Compliant: Yes/No" flag in Windows for Secure Boot 2023. Compliance depends on whether the device’s firmware (BIOS/UEFI) has been updated by the manufacturer to include the new Secure Boot certificates.
How to Check a Single Device
- System Information (GUI):
- Press Windows Key + R, type
msinfo32, and press Enter.- Check BIOS Version/Date, then compare against the OEM’s support site.
- PowerShell (Command Line):
Get-CimInstance -ClassName Win32_BIOS |Select-Object Manufacturer, SMBIOSBIOSVersion, ReleaseDate
- This gives manufacturer, BIOS version, and release date.
- Note:
Confirm-SecureBootUEFIonly shows if Secure Boot is enabled, not if it’s 2023-compliant.
- Note:
How to Automate Data Collection (for multiple devices)
- PowerShell Script: Query
Win32_BIOSandWin32_ComputerSystemremotely, export results to CSV. - Microsoft Intune (Endpoint Manager): Firmware info is collected under Devices > Hardware. Use Proactive Remediations or reporting to check at scale.
- SCCM / MECM: Hardware Inventory already gathers BIOS version. Reports or collections can identify non-compliant machines.
I hope this information is helpful.