Created
June 28, 2011 18:05
-
-
Save MikeLarned/1051746 to your computer and use it in GitHub Desktop.
PowerShell - Search Certificate By Thumbnail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem cert:\LocalMachine -Recurse | where-object {$_.Thumbprint -eq "<THUMBPRINT>" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Needed a way to search all certificate stores across machine. I encountered an error with an installed certificated. The error only returned the thumbprint of the certificate. This helped track down the offending cert.