PowerShell Logo Small

Get-NetAdapterBinding



This is the built-in help made by Microsoft for the command 'Get-NetAdapterBinding', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Returns a list of bindings for a network adapter.

SYNTAX


Get-NetAdapterBinding [[-Name] <String[]>] [-AllBindings] [-AsJob] [-CimSession <CimSession[]>] [-ComponentID <String[]>] [-DisplayName <String[]>] [-IncludeHidden]
[-ThrottleLimit <Int32>] [<CommonParameters>]
Get-NetAdapterBinding [-AllBindings] [-AsJob] [-CimSession <CimSession[]>] [-ComponentID <String[]>] [-DisplayName <String[]>] [-IncludeHidden] [-ThrottleLimit <Int32>]
-InterfaceDescription <String[]> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterBinding cmdlet returns a list of bindings for a network adapter. By default only the visible bindings shown in the Networking tab under the Network Adapter
properties in Windows UI is returned. To get all properties for a network adapter, use the AllProperties parameter.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287396
Disable-NetAdapterBinding
Enable-NetAdapterBinding
Set-NetAdapterBinding

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-NetAdapterBinding -Name MyAdapter



This example gets the bindings for the network adapter named MyAdapter.




EXAMPLE 2

PS C:\>Get-NetAdapterBinding -Name MyAdapter -AllBindings



This example gets all of the bindings for the network adapter named MyAdapter (unformatted).




EXAMPLE 3

PS C:\>Get-NetAdapterBinding -Name MyAdapter -DisplayName "Internet Protocol Version 4 (TCP/IPv4)"



This example gets the state of the TCP/IPv4 on the network adapter named MyAdapter using display name.




EXAMPLE 4

PS C:\>Get-NetAdapterBinding -Name MyAdapter -ComponentID ms_tcpip



This example gets the state of the TCP/IPv4 transport on MyAdapter using component ID.




EXAMPLE 5

PS C:\>Get-NetAdapterBinding –Name * -DisplayName "Internet*"



This example gets the state of TCP/IPv4 and TCP/IPv6 on all visible adapters using wildcard characters.