作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试解决一些非常简单的代码。该环境是一台 Azure Windows Server 2012 计算机,我以域管理员身份登录,运行具有管理员权限的 Powershell 控制台。
我只是尝试从已知位置导入 PFXCertificate,但它不会接受网络密码。
这是代码。
$SecurePWD = ConvertTo-SecureString -String 'iW@nt2die' -AsPlainText -Force
Import-PFXCertificate -Password $SecurePWD -CertStoreLocation "Cert:\LocalMachine\Root" -FilePath "C:\Certs\TestCert.pfx"
当我运行这段漂亮的代码块时,密码绝对正确(我通过使用密码登录进行测试),它向我显示以下错误:
Import-PFXCertificate : The specified network password is not correct.
为什么。
我尝试转义@,但这没有任何作用。我试过哭,但电脑对我的眼泪完全无动于衷。
最佳答案
根据 Import-PfxCertificate 的文档,-Password
参数是证书的密码,而不是登录用户的密码。
-Password - Specifies the password for the imported PFX file in the form of a secure string.
关于powershell - 导入-PFXCertificate : The specified network password is not correct,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47644518/
我是一名优秀的程序员,十分优秀!