客户端证书导入命令

时间:2023-04-12 阅读:323 评论:0 作者:xirui

@echo off

 

certutil -addstore "root" "%~dp0R3.cer"

certutil -addstore "ca" "%~dp0rootca.cer"

pause

 

root是根证书信任的目录

ca是中级证书信任的目录

 

%~dp0 在批处理中代表当前目录,包含了 \


 

 


本文链接: https://www.5240.net/?id=52 转载请注明出处!