You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within the code it is using New-WebBinding commandlet to setup bindings. The New-WebBinding has a defect where it does not set net.tcp binding properly. It will set to
Workaround:
Run the following using Powershell Resource Set-ItemProperty "IIS:\\Sites\\YOURWEBSITE" -name bindings -value (@{protocol="net.tcp";bindingInformation="808*"},@{protocol="http";bindingInformation="*:80:"})
The text was updated successfully, but these errors were encountered:
Within the code it is using New-WebBinding commandlet to setup bindings. The New-WebBinding has a defect where it does not set net.tcp binding properly. It will set to
when
is needed.
https://github.com/ebsco/iisposh/blob/master/files/default/websites.ps1#L252
Threads that show issue with commandlet
Workaround:
Run the following using Powershell Resource
Set-ItemProperty "IIS:\\Sites\\YOURWEBSITE" -name bindings -value (@{protocol="net.tcp";bindingInformation="808*"},@{protocol="http";bindingInformation="*:80:"})
The text was updated successfully, but these errors were encountered: