我想在live and acceptance windows服务器上安装证书。一些命令应该是可能的。我以前做过,但找不到它。我认为它与“WinHttpCertCfg.exe”有关。
有人知道该命令是什么,或者可以将我发送到某个网站。非常感谢..
答案 0 :(得分:0)
您可以使用命令行添加Windows证书存储:
certmgr.exe -add "Path\To\Cert\MyCertificate.cer" -s -trustedpublisher
您原因需要管理权限。
您可以找到更多信息here。
提示:如果要添加自签名证书,则还需要添加 new one 派生的证书。 (示例:如果您创建了自己的CA中间证书,则还需要将其添加到证书存储区中)
答案 1 :(得分:0)
我使用以下命令:
certmgr.exe /c /add my_cert.cer /s root
仅供参考:https://msdn.microsoft.com/en/library/e78byta0(VS.80).aspx