how toinstall certificate?
cert -r -s "cerificatename"
2 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question
Certmgr.exe needs to be downloaded from Windows Driver Kit, and can be located in the folder with the certificate. - NPetty 7 years ago
Here, we do SSL inspection, so we need to install the public cert in the Trusted Root Authorities store. To do that, I have a post-install script that does this:
certutil -addstore Root root.cer
Where Root is the name of the "trusted root authorities" as far as certutil is concerned (different apps call it different names---google this) and root.cer is the cert provided by our Web Filter - robcav 7 years ago