To tell if Secure Boot is enabled on a Windows PC, there are several straightforward methods:
- One simple way is using the System Information tool:
- Right-click the Start button and select Run.
- Type
msinfo32and press Enter. - In the System Information window under System Summary, find the item labeled "Secure Boot State".
- Its value will be "On" if Secure Boot is enabled, "Off" if it is disabled, or "Unsupported" if your hardware doesn't support it.
- Another method is using PowerShell:
- Open PowerShell as Administrator.
- Run the command
Confirm-SecureBootUEFI. - It will return
Trueif Secure Boot is enabled,Falseif disabled, or an error if unsupported or lacking permissions.
- You can also check directly from the UEFI/BIOS settings by restarting your PC and entering firmware setup (usually via keys like DEL, ESC, F2, etc.). Within firmware settings, look for Secure Boot status usually under Boot or Security tab.
These methods allow confirming whether Secure Boot is active, helping ensure your system’s security. The System Information and PowerShell methods do not require rebooting while BIOS/UEFI access is universal but requires restarting the PC.
