从命令行打开certmgr并将证书保存到c:directory

问题描述 投票:0回答:1

我正在尝试使用脚本中的certmgr将证书从我的个人商店导出到c:drive位置

有人知道命令是什么,还是可以将我发送到某些网站。非常感谢..

CertMgr /s /r CurrentUser my /put cert1.cer /s /r C:\
wcf ssl command certificate ssl-certificate
1个回答
0
投票

以下命令在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
© www.soinside.com 2019 - 2024. All rights reserved.