I know I have some certificates installed on my Windows 7 machine. How can I see what they are, the nicknames they are known by, and browse detailed information (such as issuer and available usage)?
4 Answers
In Internet Explorer:
Go to Tools (Alt+X) → Internet Options → Content → Certificates.
0Using PowerShell:
Get-ChildItem -Recurse Cert: 4Or run (Start -> Run or just hit WIN+R):
certmgr.msc 1Start mmc via Search files or Command Prompt:
Menu File → Add/Remove Snap-In... → Add... → Certificates → Add → My User account and/or Computer account → Finish → Close → OK → Browse.
1