Login or Sign Up
Logging in...
Remember me
Log in
Forgot password or user name?
or
Sign Up
Log in with
Search in titles only
Search in Windows Dedicated Servers only
Search
Advanced Search
Forums
New Topics
Mark Channels Read
Member List
Forum
Technical Support
Dedicated Server Hosting
Windows Dedicated Servers
Welcome to the eUKhost Web Hosting Community Forums. If you've never visited our forum before,
please register first
- it takes just a few moments.
Add / Remove the bindings for the website in IIS through Powershell commands
Collapse
X
Collapse
Posts
Latest Activity
Photos
Search
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
Popeye
replied
19-06-2013, 03:09
Re: Add / Remove the bindings for the website in IIS through Powershell commands
Hello Jen,
Nice work. Thank you for sharing this !!!!!
Regards,
Popeye
The Sailor Man
Leave a comment:
Post Comment
Cancel
Jen
started a topic
Add / Remove the bindings for the website in IIS through Powershell commands
29-05-2013, 06:08
Add / Remove the bindings for the website in IIS through Powershell commands
Please refer to Powershell commands:
New-WebBinding [[-Name] <String>] [-Protocol <String>] [-Port <UInt32>] [-IPAddress <String>] [-HostHeader <String>]
For example:
Add the binding with the following commands:
New-WebBinding -Name "test.com" -IP "XX.XX.XX.XX" -Port 443 -Protocol https
(The binding of port 443 will be added for the domain test.com)
Remove the binding with the following:
Get-WebBinding -Port 443 -Name "test.com" | Remove-WebBinding
(The binding of port 443 will be removed for the domain "test.com")
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
X
Leave a comment: