首页 > 开发 > PowerShell > 正文

Powershell读取PFX证书并输入密码的脚本分享

2020-05-30 20:18:41
字体:
来源:转载
供稿:网友

支持所有PS版本

当你使用Get-PfxCertificate读取PFX证书去签名你的脚本,但是它总是会已交互式方式提示用户去输入密码。

下面介绍怎么通过脚本去提交密码:

代码如下:
$PathToPfxFile = 'C:/temp/test.pfx'
$PFXPassword = 'test'
 
Add-Type -AssemblyName System.Security
$cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
$cert.Import($PathToPfxFile, $PFXPassword, 'Exportable')
 
$cert 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表