Get-WebBinding

Get-WebBinding

Gets the bindings on the specified IIS site.

Syntax

Parameter Set: Default
Get-WebBinding [[-Name] <String> ] [-HostHeader <String> ] [-IPAddress <String> ] [-Port <String> ] [-Protocol <String> ] [ <CommonParameters>]

Detailed Description

Gets information about the bindings configured on the site specified, such as protocol and port number.

Parameters

-HostHeader<String>

The host name for which the binding is configured.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

-IPAddress<String>

The IP address for which the binding is configured.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

-Name<String>

The name of the site for which binding information is returned.

Aliases

none

Required?

false

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

-Port<String>

The port for which the binding is configured.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

-Protocol<String>

The protocol for which the binding is configured, usually http, https or ftp.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

Examples

-------------- EXAMPLE 1: Get the site bindings of the Default Web Site --------------

Gets the bindings configured on the Default Web Site.

IIS:\>Get-WebBinding -Name "Default Web Site"