# This will retrieve a list of all certs and their thumbprints in the LocalMachine certificate store # http://technet.microsoft.com/en-us/library/hh847761.aspx here are some examples of usage Get-ChildItem -Path cert:\LocalMachine -Recurse | select Subject, FriendlyName, Thumbprint | Format-List