Yes, it’s only under UEFI.
--
John Wright
IT Support Specialist
![]()
1800 Old Bluegrass Avenue, Louisville, KY 40215
Please submit IT requests to Hazelwoo...@bluegrass.org
24 Hour Helpline 1.800.928.8000
CONFIDENTIALITY NOTICE: This message contains confidential information and is intended only for the individual(s) addressed in the message. If you are not the named addressee, you should not disseminate, distribute, or copy this e-mail. If you are not the intended recipient, you are notified that disclosing, distributing, or copying this e-mail is strictly prohibited.
From: ntsys...@googlegroups.com <ntsys...@googlegroups.com>
On Behalf Of Mike Leone
Sent: Friday, May 15, 2026 11:37 AM
To: NTSysAdmin <ntsys...@googlegroups.com>
Subject: [ntsysadmin] Updated TPM Boot certificates
|
EXTERNAL EMAIL - This email was sent by a person from outside your organization. Exercise caution when clicking links, opening attachments or taking further action, before validating its authenticity. |
|
Secured by Check Point |
--
You received this message because you are subscribed to the Google Groups "ntsysadmin" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
ntsysadmin+...@googlegroups.com.
To view this discussion visit
https://groups.google.com/d/msgid/ntsysadmin/CAHBr%2B%2BhqjNxEDk5EFC7Bqv6obxHEf7JdHKDffYYcSzg-zgK8jw%40mail.gmail.com.
Yes, as long as they’re getting updates, the certs will be updated.
If you check around, you might find that some at least have already been updated. My work laptop for example has a cert with this subject property.
Subject : CN=Windows UEFI CA 2023, O=Microsoft Corporation, C=US
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/CAHBr%2B%2BjTr5eEXY8pY3-wDpyvTNfsFn%2BEi_0%3DCSN88-BQYjCFmg%40mail.gmail.com.
Charlie Sullivan
Principal Windows Systems Administrator
That could be taken as me suggesting Mike's question was stupid. It wasn't stupid at all, despite his framing it that way!
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/CAEuHzzmaak0%3DG%2Bgq911MNo%3DF%3Dt0nseximuOMfRFxSNRfmfw-3w%40mail.gmail.com.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/CAEuHzz%3D_LvPyUidRXFE1sGVDg1_d5zuSa%3DiYOCb%2BXrRx-3LAJg%40mail.gmail.com.
So, on the low hanging fruit side of things, has anyone seen an exploit that SecureBoot would protect against?
Philip Elder MCTS
Senior Technical Architect
Microsoft High Availability MVP
MPECS Inc.
E-mail: Phili...@MPECSInc.Ca
Phone: +1 (780) 458-2028
Web: www.MPECSInc.Com
Blog: Blog.MPECSInc.Com
Twitter: Twitter.com/MPECSInc
Please note: Although we may sometimes respond to email, text and phone calls instantly at all hours of the day, our regular business hours are 8:00 AM - 5:00 PM, Monday thru Friday.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/CANYDaP9hOaHy3nd_mAb%2BBs-iYzS1wnQRs6bjfboFZ2EJRvoveQ%40mail.gmail.com.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/e4de44785f0f4c839684d903167e7814%40MPECSInc.Ca.
FinSpy, ESpecter, MoonBounce – pop to mind.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/CAEuHzz%3Dgb0E%3Dcc04SR4qMBHOkeoCecjjZasV%2B4WZqb8-Li2xAA%40mail.gmail.com.
So, I’ve stayed out of this because – pedantry. 😊
Secure Boot and TPM are not the same thing.
Secure Boot requires TPM.
You can have TPM without Secure Boot.
You can have UEFI without Secure Boot.
You cannot have Secure Boot without TPM.
You cannot have Secure Boot without UEFI.
You can have TPM without it being enabled (tpm.msc is the console for handling the TPM and obviously you can do it from PowerShell and .NET).
If your firmware is UEFI, then you have a TPM and you might have secure boot enabled.
To confirm secure boot is enabled, you use Confirm-SecureBootUEFI.
To confirm that the certificates are updated:
[System.Text.Encoding]::Ascii.GetString( ( Get-SecureBootUEFI db ).bytes ) -match 'Windows UEFI CA 2023'
So, on a target computer:
if( $env:Firmware_Type -eq ‘UEFI’ )
{
if( Confirm-SecureBootUEFI )
{
if( [System.Text.Encoding]::Ascii.GetString( ( Get-SecureBootUEFI db ).bytes ) -match 'Windows UEFI CA 2023' )
{
## has updated certs
}
else
{
## needs updated certs
}
}
else
{
## secure boot not enabled
}
}
else
{
## BIOS, not UEFI
}
You can obviously add in the remoting as you please.
--
You received this message because you are subscribed to the Google Groups "ntsysadmin" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
ntsysadmin+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/CAHBr%2B%2Bg6wJRn0YzC-w1Q9jPsLeNgrZRwATqNr2pCwfk%3DNShZVQ%40mail.gmail.com.
So, I’ve stayed out of this because – pedantry. 😊
Secure Boot and TPM are not the same thing.
Secure Boot requires TPM.
You can have TPM without Secure Boot.
You can have UEFI without Secure Boot.
You cannot have Secure Boot without TPM.
You cannot have Secure Boot without UEFI.
You can have TPM without it being enabled (tpm.msc is the console for handling the TPM and obviously you can do it from PowerShell and .NET).
If your firmware is UEFI, then you have a TPM and you might have secure boot enabled.
To confirm secure boot is enabled, you use Confirm-SecureBootUEFI.
To confirm that the certificates are updated:
[System.Text.Encoding]::Ascii.GetString( ( Get-SecureBootUEFI db ).bytes ) -match 'Windows UEFI CA 2023'
So, on a target computer:
if( $env:Firmware_Type -eq ‘UEFI’ )
{
if( Confirm-SecureBootUEFI )
{
if( [System.Text.Encoding]::Ascii.GetString( ( Get-SecureBootUEFI db ).bytes ) -match 'Windows UEFI CA 2023' )
{
## has updated certs
}
else
{
## needs updated certs
}
}
else
{
## secure boot not enabled
}
}
else
{
## BIOS, not UEFI
}
You can obviously add in the remoting as you please.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/8264dedda4d24065acf912639cd1afde%40smithcons.com.
>> I'll be re-writing that section of my script tomorrow.
>> $script:Updated_Certs = Invoke-Command -ComputerName $MemberServer -ScriptBlock { ([System.Text.Encoding]::Ascii.GetString( ( Get-SecureBootUEFI db ).bytes ) -match 'Windows UEFI CA 2023' )}
>>
>> And that should evaluate to TRUE or FALSE, right?
Yes. And in case it isn’t obvious, it must be executed from an elevated session.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/CAHBr%2B%2BisaBJh6FuQXNKFh40Op-w7typoMq%3Dt3POZRr1Kw55u9g%40mail.gmail.com.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/064f2c4db1bc481b80f9a9a675da2539%40smithcons.com.
Conceptually, this looks ok. I didn’t test it.
To view this discussion visit https://groups.google.com/d/msgid/ntsysadmin/CAHBr%2B%2BgGWNzo8fv9QY-GuLtqgC5qz84CYD0wpY%2BFH0pbGcbODA%40mail.gmail.com.