Set-WebBinding可以将协议从HTTP更改为HTTPS吗?

时间:2018-05-23 11:56:32

标签: powershell iis

我可以使用Set-WebBinding来更改给定绑定的端口,但是我可以使用它来从端口80上的http更改为端口443上的https,反之亦然吗?

我尝试使用此命令但它失败了,因为它无法识别-PropertyName Protocol

Set-WebBinding -Name 'Default Web Site' -BindingInformation '127.0.0.1:80:localhost'  -PropertyName Port -Value 443 -PropertyName Protocol -Value 'https'

或者我应该使用Remove-WebBinding然后使用New-WebBinding进行此类更改吗?

1 个答案:

答案 0 :(得分:2)

我认为您需要删除Remove-WebBinding的现有绑定,并使用New-WebBinding重新创建它,这允许您提供协议,端口等