Powershell导入PFX证书
Powershell导入PFX证书
我们导入Windows服务证书一般使用双击方式按照向导导入和MMC导入,今天我们介绍通过Powershell导入PFX证书,具体见下:
将PFX证书导入本地计算机的的个人证书中
$Pwd = ConvertTo-SecureString -String "123456" -Force -AsPlainTextImport-PfxCertificate -FilePath "d:\mycert.pfx" -CertStoreLocation Cert:\LocalMachine\My -Password $Pwd
将PFX证书导入本地计算机的的受信任颁发机构中
$Pwd = ConvertTo-SecureString -String "123456" -Force -AsPlainTextImport-PfxCertificate -FilePath "d:\mycert.pfx" -CertStoreLocation Cert:\LocalMachine\Root -Password $Pwd
将PFX证书导入当前用户个人证书中
$Pwd = ConvertTo-SecureString -String "123456" -Force -AsPlainTextImport-PfxCertificate -FilePath "d:\mycert.pfx" -CertStoreLocation Cert:\CurrentUser\My -Password $Pwd
将PFX证书导入当前用户的受信任颁发机构中
$Pwd = ConvertTo-SecureString -String "123456" -Force -AsPlainTextImport-PfxCertificate -FilePath "d:\mycert.pfx" -CertStoreLocation Cert:\CurrentUser\Root -Password $Pwd
或者也可以下面这样写
Import-PfxCertificate -FilePath "d:\mycert.pfx" -CertStoreLocation Cert:\CurrentUser\Root -Password $(ConvertTo-SecureString -String "123456" -AsPlainText -Force)
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~