我想在
Windows(XP和7)中为IE,Firefox和Chrome安装自签名证书.
我需要为多个系统安装证书,所以我计划创建安装浏览器证书的.bat文件.谷歌搜索时我得到了以下命令
certutil -addstore -f -enterprise -user root root_ca.cer
但它只适用于IE. Chrome和Firefox有什么选择吗?
有点旧的帖子,但我想我还是会投入两分钱.您是对的,批处理脚本中的该命令会将证书root_ca.cer安装到受信任的CA存储中.我会将该行修改为:
原文链接:https://www.f2er.com/windows/364945.htmlcertutil -addstore -f -enterprise -user root "%~dp0root_ca.cer"
这样shell就会将%~dp0扩展到执行脚本的路径,这样你就可以从UNC路径通过网络运行它,它仍然可以工作.
在回答您的其他问题时,Chrome会(从写这篇文章时)从Windows证书商店读取,因此无需做任何特别的事情;运行脚本后重新启动chrome,它应该很甜.
至于Mozilla check out this post这样做的脚本. Simples!