码迷,mamicode.com
首页 > Windows程序 > 详细

Windows根证书的批量导出和导入

时间:2019-04-14 09:48:55      阅读:526      评论:0      收藏:0      [点我收藏+]

标签:for   reac   obj   env   根证书   use   code   current   top   

# POWERSHELL批量导出
Get-ChildItem -Path Cert:\LocalMachine\Root\ |ForEach-Object {Export-Certificate -Cert $_ -FilePath ($env:USERPROFILE + "\Desktop\新建文件夹\ROOT\" + $_.Thumbprint + ".cer")}

# POWERSHELL批量导入
Get-ChildItem -Path ($env:USERPROFILE + "\Desktop\新建文件夹\ROOT\") |Import-Certificate -CertStoreLocation cert:\CurrentUser\Root

 

rem 命令行批量导入

@echo off
cd /d %~dp0
for /f "tokens=*" %%G in (‘dir *.crt /b ‘) do Certutil -f -addstore Root %%G

 

Windows根证书的批量导出和导入

标签:for   reac   obj   env   根证书   use   code   current   top   

原文地址:https://www.cnblogs.com/waxwork3/p/10703938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!