PowerShell Logo Small

Enable-NetAdapterBinding



This is the built-in help made by Microsoft for the command 'Enable-NetAdapterBinding', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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

Enables a binding to a network adapter.

SYNTAX


Enable-NetAdapterBinding [-Name] <String[]> [-AllBindings] [-AsJob] [-CimSession <CimSession[]>] [-ComponentID <String[]>] [-DisplayName
<String[]>] [-IncludeHidden] [-PassThru] [-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Enable-NetAdapterBinding [-AllBindings] [-AsJob] [-CimSession <CimSession[]>] [-ComponentID <String[]>] [-DisplayName <String[]>]
[-IncludeHidden] [-PassThru] [-ThrottleLimit <Int32>] -InterfaceDescription <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Enable-NetAdapterBinding [-AsJob] [-CimSession <CimSession[]>] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm]
[-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Enable-NetAdapterBinding cmdlet enables binding of a protocol or filter to the network. By default this cmdlet operates on the protocols
and filters visible in the Windows UI Network Adapter properties pages. Note: Enabling some adapter bindings can automatically disable other
network adapter bindings.



<

RELATED LINKS

Disable-NetAdapterBinding
Get-NetAdapterBinding
Set-NetAdapterBinding

REMARKS

<

Examples


EXAMPLE 1

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


This is a version of the cmdlet that enables TCPv4 and IPv4 on the network adapter named MyAdapter using wildcard characters in the display
name and restarts the network adapter.
PS C:\>Enable-NetAdapterBinding -Name MyAdapter -DisplayName "Inter* (TCP/IPv4)"



This example enables TCIPv4 and IPv4 on the network adapter named MyAdapter using the display name and restarts the network adapter.




EXAMPLE 2

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



This example enables TCPv4 and IPv4 on the network adapter named MyAdapter using the component ID and restarts the network adapter.