我正在尝试使用powershell导入.pfx文件。我在iis中创建了一个自签名证书,并使用此代码导入它但是它失败并生成此错误The specified network password is not correct
。
$cert = Import-PfxCertificate -FilePath (Resolve-Path $_.File) -CertStoreLocation cert:\localMachine\my
答案 0 :(得分:0)
我遇到了同样的问题,但就我而言,这只是一个错误的密码。
$secureString = ConvertTo-SecureString YOURSECRETPASSHERE -AsPlainText -Force
Import-PfxCertificate -FilePath "$PSScriptRoot\Certificate.pfx" -CertStoreLocation 'Cert:\LocalMachine\My' -Password $secureString