55

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 4

26

In Internet Explorer:

Go to Tools (Alt+X)Internet OptionsContentCertificates.

0
70

Using PowerShell:

Get-ChildItem -Recurse Cert:
4
  • Well what I like about this answer is that I know how to launch a power shell, but where the hell are the internet options? Commented Nov 29, 2011 at 19:05
  • 2
    @AdrianRatnapala inetcpl.cpl
    – Iszi
    Commented Dec 19, 2013 at 20:43
  • 4
    Shorter version: gci -r cert: . I don't know why Powershell users insist on such long ass camel+hyphen case command names.
    – Salman
    Commented Dec 7, 2014 at 15:13
  • 38
    @SalmanPK: As a matter of principle I always give the long versions of the commands in my answers. This isn't Code Golf, it's trying to be helpful. If you want shorter, you should use ls -r cert: anyway.
    – Joey
    Commented Dec 7, 2014 at 16:06
57

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

certmgr.msc
2
  • Related: Full list of .msc's, including certmgr.msc, certsrv.msc and certtmpl.msc. Commented Jun 28, 2015 at 12:32
  • 4
    use certlm.msc to access the list of the Locale Machine
    – Lenor
    Commented Jul 22, 2022 at 11:27
20

Start mmc via Search files or Command Prompt:

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

1
  • good answer, but usage of MMC may be restricted by policy if your computer is managed by an employer or other establishment; I was able to use the answer from @tborychowski Commented Jul 17, 2018 at 9:26

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .