23 February 2022

How do I - Get a certificate thumbprint from my local certificate store?

Using Powershell it's pretty easy to get your thumbprint.  To get the list of all certificates in the local machine wide store, use:

Get-ChildItem -Path Cert:LocalMachine\MY

To get the list of all certificates in for the currently logged on user, use:

Get-ChildItem -Path Cert:CurrentUser\MY

Happy coding!
C


Microsoft Authentication Library (MSAL) Overview

The Microsoft Authentication Library (MSAL) is a powerful library designed to simplify the authentication process for applications that conn...