【发布时间】:2015-07-16 06:47:55
【问题描述】:
我可以将证书添加到 IIS 服务器证书 certutil -p -importPFX Test.pfx" 但我无法从命令行删除证书
【问题讨论】:
标签: iis-7 ssl-certificate
我可以将证书添加到 IIS 服务器证书 certutil -p -importPFX Test.pfx" 但我无法从命令行删除证书
【问题讨论】:
标签: iis-7 ssl-certificate
先找到指纹,然后传给certutil.exe
在 PowerShell 中:
$thumbprint = (Get-ChildItem cert:\LocalMachine\MY | WHERE {$_.Subject -match "blah blah" }
& certutil.exe -delstore my $thumbprint
【讨论】: