我使用Remove-WebBinding -Port $Port -Protocol https
删除网页绑定。这将从关联的站点中删除绑定,但绑定仍然存在,我可以在IIS:\SslBindings
下找到一个条目但未分配给任何站点
如果我尝试分配任何这些未使用的绑定,我会收到错误 端点0.0.0.0:38000的SSL绑定已存在。
问题是我应该使用哪个cmdlet来删除绑定或从IIS中删除条目:\ SslBinding?
此致 Jeez
答案 0 :(得分:20)
如何使用Remove-Item
:
示例:
PS> dir IIS:\SslBindings
IP Address Port Store Sites
---------- ---- ----- -----
0.0.0.0 8172 MY
0.0.0.0 9000 My
PS> Remove-Item -path "IIS:\SslBindings\0.0.0.0!9000"
PS> dir IIS:\SslBindings
IP Address Port Store Sites
---------- ---- ----- -----
0.0.0.0 8172 MY
答案 1 :(得分:7)
当然有一个WebAdministration cmdlet:Remove-WebBinding
http://technet.microsoft.com/en-us/library/ee790591.aspx
答案 2 :(得分:2)
使用netsh http delete sslcert ipport = 0.0.0.0:443删除SSL: 例如:
$DelSsl = netsh http delete sslcert ipport=0.0.0.0:443
$DelSsl
$Ssl = netsh http add sslcert ipport=0.0.0.0:443 certhash=$certhash appid=$appid
$Ssl