PowerTip: Use PowerShell to Discover Certificate Thumbprints
Summary: Use Windows PowerShell to discover certificate thumbprints. How can I use Windows PowerShell to discover the thumbprints of certificates that are installed on my machine? Interrogate the certificate store, which is exposed as the cert: drive:Get-ChildItem -Path cert: -Recurse | select Subject, FriendlyName, Thumbprint |...