0

Is there a way that I can import a list of bindings for a site in IIS 8.5?

I have 160+ bindings to add to one site, all the same IP, and I'd really love to be able to do it non-manually :)

Kevin
  • 133
  • 1
  • 2
  • 14

1 Answers1

1

Powershell! New-WebBinding does what I think you want.

https://technet.microsoft.com/en-us/library/ee790567.aspx

New-WebBinding [[-Name] ] [-Protocol ] [-Port ] [-IPAddress ] [-HostHeader ] [-Force] [-WarningAction ] [-WarningVariable ] []

E-Rock
  • 499
  • 3
  • 6
  • thanks bud. Unaware of that one :) Going to write a script to parse my CSV, loop them, and do this. Thanks! :) – Kevin Feb 27 '15 at 16:40