我会自动部署具有此绑定(bind)的旧网站:

net.tcp 808:*

但是当我使用WebAdministration进行如下设置时:
New-WebBinding -Name "site" -Procotol "net.tcp" -Port 808

我得到此绑定(bind):
net.tcp *:808:

他们是一样的吗?

最佳答案

没关系,我可以使用:

New-ItemProperty -Path "IIS:\sites\sitename" -Name Bindings -value @{protocol="net.tcp"; bindingInformation="808:*"}

实现相同。

转至:Why Powershell's New-WebBinding commandlet creates incorrect HostHeader?

09-16 03:21