Using powershell, how do I extract the thumbprint from an SSL Certificate without installing it?

10,574

Get an object in Powershell-3.0 and later, which can then be used with Select and other property accessors:

 Get-PfxCertificate -FilePath Certificate.pfx 

Alternatively, one can use openssl from msys or cygwin. However, this is tricky since it's one of those *nix programs that spews all the useful info to stderr, which gets handled badly in powershell.

 openssl pkcs12 -info -in Certificate.pfx

Note: Both of these methods require the user to input the password. I've yet to find a fully automated way to do this without manually entering the password each time.

Share:
10,574

Related videos on Youtube

Eris
Author by

Eris

Nothing matters, as any null check will show.

Updated on September 18, 2022

Comments

  • Eris
    Eris over 1 year

    Every example I've found on StackExchange, and other internet forums, etc all tell me how to get the thumbprint from a certificate already installed into a certificate store. Alternatively, the instructions say to install the cert, then get the thumbprint.

    However, I really need to get the thumbprint from the pfx file without installing it.

  • STiLeTT
    STiLeTT over 6 years
    There is an automated way of doing it: stackoverflow.com/a/42570310/1563172