我可以将证书添加到IIS服务器证书 certutil -p<> -importPFX Test.pfx" 但是我无法从命令行中删除证书
答案 0 :(得分:0)
首先找到指纹,然后将其传递给certutil.exe
在PowerShell中:
$thumbprint = (Get-ChildItem cert:\LocalMachine\MY | WHERE {$_.Subject -match "blah blah" }
& certutil.exe -delstore my $thumbprint