How can I get a list of installed certificates on Windows?

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 OptionsContentCertificates.

0

Using PowerShell:

Get-ChildItem -Recurse Cert: 
4

Or run (Start -> Run or just hit WIN+R):

certmgr.msc 
1

Start mmc via Search files or Command Prompt:

Menu FileAdd/Remove Snap-In...Add...CertificatesAddMy User account and/or Computer accountFinishCloseOK → Browse.

1

You Might Also Like