如何从" IIS服务器证书中删除证书"从命令行

时间:2015-07-16 06:47:56

标签: iis-7 ssl-certificate

我可以将证书添加到IIS服务器证书 certutil -p<> -importPFX Test.pfx" 但是我无法从命令行中删除证书

1 个答案:

答案 0 :(得分:0)

首先找到指纹,然后将其传递给certutil.exe

在PowerShell中:

$thumbprint = (Get-ChildItem cert:\LocalMachine\MY | WHERE {$_.Subject -match "blah blah" } 
& certutil.exe -delstore my $thumbprint