How to: Manage the Certificate Store on your local machine using the command prompt or PowerShell
How to: Manage the Certificate Store on your local machine using the command prompt or 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 UI 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#)
Love
Can we use Let's Encrypt, the free and open certificate authority?
Hola! gracias por la info, me sirvió el comando sacandole el nombre del server. En mi caso, fue una migración…
Yes 3rd option helped me too. I removed the WC key Values from config file then started working.
I know this is from 2014. But really, thank you!