Powershell读取PFX证书并输入密码的脚本分享
时间:2021-02-14 11:31:25|栏目:|点击: 次
支持所有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
上一篇:使用Jmail及Winwebmail发信时系统记录中的错误:502 Error: command ...
栏 目:
下一篇:Powershell小技巧之通过EventLog查看近期电脑开机和关机时间
本文标题:Powershell读取PFX证书并输入密码的脚本分享
本文地址:http://www.codeinn.net/misctech/62893.html






