我正在尝试使用脚本中的certmgr将证书从我的个人商店导出到c:drive位置
有人知道命令是什么,还是可以将我发送到某些网站。非常感谢..
CertMgr /s /r CurrentUser my /put cert1.cer /s /r C:\
以下命令在myCert
系统存储中将通用名my
的证书保存到名为newCert.cer
的文件中。 (certmgr
命令是certmgr.exe
而不是certmgr.msc
)
certmgr / add / c / n myCert / s mynewCert.cer
请参阅以下链接。https://docs.microsoft.com/en-us/dotnet/framework/tools/certmgr-exe-certificate-manager-tool此外,我们可以参考下面的Powershell cmdlet,该cmdlet可以将证书导出到文件,这些命令之间的区别在于是否导出了私钥和某些其他扩展属性。https://docs.microsoft.com/en-us/powershell/module/pkiclient/export-certificate?view=win10-pshttps://docs.microsoft.com/en-us/powershell/module/pkiclient/export-pfxcertificate?view=win10-ps这是将证书导出到PFX文件的示例。
$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText
Get-ChildItem -Path cert:\localMachine\my\5F98EBBFE735CDDAE00E33E0FD69050EF9220254 | Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd