PowerShell Logo Small

Disable-NetAdapterBinding



This is the built-in help made by Microsoft for the command 'Disable-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

Disables a binding to a network adapter.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Disable-NetAdapterBinding cmdlet disables a binding to a network adapter. Running this cmdlet causes loss of network connectivity depending on the binding that is
disabled. Note: Disabling some adapter bindings can automatically enable other network adapter bindings.



<

RELATED LINKS

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

REMARKS

<

Examples


EXAMPLE 1

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



This example disables TCP/IPv4 on the network adapter named MyAdapter using the display name Internet Protocol Version 4 (TCP/IPv4) and restarts the network adapter.




EXAMPLE 2

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



This example disables TCP/IPv4 on the network adapter named MyAdapter using the component ID ms_tcpip and restarts the network adapter.




EXAMPLE 3

PS C:\>Disable-NetAdapterBinding -Name MyAdapter -DisplayName "Inter* (TCP/IPv4)"



This example disables TCP/IPv4 on network adapter named MyAdapter using a wildcard character in the display name and restarts the network adapter.