使用PowerShell从IIS导出证书

时间:2011-12-19 15:37:33

标签: iis powershell

如何使用PowerShell从IIS 7导出自签名证书?

2 个答案:

答案 0 :(得分:8)

dir cert:\localmachine\my | Where-Object { $_.hasPrivateKey } |   Foreach-Object { [system.IO.file]::WriteAllBytes("c:\$($_.Subject).pfx",     ($_.Export('PFX', 'secret')) ) }

来源: Exporting Certificate With Private Key

这会将您的所有证书导出到C:\

您可以通过运行来检查您拥有的证书:

dir cert:\localmachine\my

答案 1 :(得分:4)

值得注意的是,当我尝试导出我的根证书时,由于unicode中的外语字符无效,我不得不使用Thumbprint作为文件名而不是Subject。这有效:

dir cert:\localmachine\root |
Foreach-Object { [system.IO.file]::WriteAllBytes("c:\temp\$($_.Thumbprint).cer",     ($_.Export('CERT', 'secret')) ) }