gpt4 book ai didi

powershell - 使用 Get-PfxCertificate 自动签署 powershell 脚本

转载 作者:行者123 更新时间:2023-12-03 20:46:46 26 4
gpt4 key购买 nike

我必须使用来自远程机器的证书签署远程脚本,我从中获得了 .pfx文件。

我想通过向 Get-PfxCertificate 提供密码来自动编写脚本。以编程方式。

所以问题是:

是否可以以某种方式以编程方式提供所需的密码
Get-PfxCertificate ?

最佳答案

$CertPath = "my.pfx"
$CertPass = "mypw"
$Cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2($CertPath, $CertPass)
Set-AuthenticodeSignature -Certificate $Cert -TimeStampServer http://timestamp.verisign.com/scripts/timstamp.dll -FilePath $OutputFilename

确保您拥有适当的权限,否则您将无法创建 X509Certificate2 对象的实例。

关于powershell - 使用 Get-PfxCertificate 自动签署 powershell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2319765/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com