PowerShell 技能连载 - 直接导入证书(第一部分)

可以在任意版本的 PowerShell 中用 .NET 方法将证书安装到计算机中。这将导入一个证书文件到个人存储中:

1
2
3
4
5
6
# importing to personal store
$Path = 'C:\Path\To\CertFile.cer'
$Store = New-Object -TypeName System.Security.Cryptography.X509Certificates.X509Store -ArgumentList My, CurrentUser
$Store.Open('ReadWrite')
$Store.Add($Path)
$Store.Close()

您可以打开证书管理器证实这一点:

1
PS C:\> certmgr.msc

如果您想将证书导入到一个不同的存储位置,只需要调整创建存储对象的参数即可。

PowerShell 技能连载 - 直接导入证书(第一部分)

http://blog.vichamp.com/2017/04/11/directly-importing-certificates-part-1/

作者

吴波

发布于

2017-04-11

更新于

2022-07-06

许可协议

评论