TL;DR — Resumen Rápido

Manage the Certificate Store on your local machine using the command prompt or PowerShell. Guía técnica detallada para profesionales de TI.

Nota: Este artículo fue publicado originalmente en 2013. Algunos pasos, comandos o versiones de software pueden haber cambiado. Consulta la documentación actual de Windows Servers para la información más reciente.

Requisitos Previos

Antes de comenzar, asegúrate de tener:

  • Windows Server installed
  • Administrator access
  • Remote Desktop or direct console access

How to: Manage the (https://en.wikipedia.org/wiki/Junior_Certificate “Junior Certificate”) Store on your local machine using the (https://en.wikipedia.org/wiki/Command_Prompt “Command Prompt”) or (https://www.microsoft.com/powershell “Windows PowerShell”)

It seems that as of late I am playing a lot with certificates in order to authenticate traffic across the network. Some of the most useful shell commands I have found are listed below, hopefully they’ll help you manage your certificate store when using the (https://en.wikipedia.org/wiki/User_interface “User interface”) is not an easy option: List all the certificates in the store:

certutil -store | more (list cert store)

(or)

get-item Cert:LocalMachineMy*

  Delete a particular certificate from the store:

certutil -delstore (Index#)

(or)

remove-item Cert:LocalMachineMy (thumbprint#)

   

Resumen