PowerShell Logo Small

Set-NetAdapterAdvancedProperty



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

Sets the advanced properties of a network adapter.

SYNTAX


Set-NetAdapterAdvancedProperty [[-Name] <String[]>] [-AllProperties] [-AsJob] [-CimSession <CimSession[]>] [-DisplayValue <String>] [-IncludeHidden] [-NoRestart] [-PassThru]
[-RegistryValue <String[]>] [-ThrottleLimit <Int32>] -DisplayName <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterAdvancedProperty [-AllProperties] [-AsJob] [-CimSession <CimSession[]>] [-DisplayValue <String>] [-IncludeHidden] [-NoRestart] [-PassThru] [-RegistryValue
<String[]>] [-ThrottleLimit <Int32>] -InterfaceDescription <String[]> -RegistryKeyword <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterAdvancedProperty [[-Name] <String[]>] [-AllProperties] [-AsJob] [-CimSession <CimSession[]>] [-DisplayValue <String>] [-IncludeHidden] [-NoRestart] [-PassThru]
[-RegistryValue <String[]>] [-ThrottleLimit <Int32>] -RegistryKeyword <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterAdvancedProperty [-AllProperties] [-AsJob] [-CimSession <CimSession[]>] [-DisplayValue <String>] [-IncludeHidden] [-NoRestart] [-PassThru] [-RegistryValue
<String[]>] [-ThrottleLimit <Int32>] -DisplayName <String[]> -InterfaceDescription <String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterAdvancedProperty [-AsJob] [-CimSession <CimSession[]>] [-DisplayValue <String>] [-NoRestart] [-PassThru] [-RegistryValue <String[]>] [-ThrottleLimit <Int32>]
-InputObject <CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetAdapterAdvancedProperty cmdlet sets the advanced properties of a network adapter. Changes are made directly into the registry for the computer. Many of the common
advanced properties can be controlled via a cmdlet, such as the Set-NetAdapterRss or Set-NetAdapterLso cmdlets.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287419
Get-NetAdapterAdvancedProperty
New-NetAdapterAdvancedProperty
Remove-NetAdapterAdvancedProperty
Reset-NetAdapterAdvancedProperty
Set-NetAdapterLso
Set-NetAdapterRss

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Set-NetAdapterAdvancedProperty -Name MyAdapter -DisplayName "Flow Control" -DisplayValue "Rx and Tx Enabled"



This example sets the value of the Flow Control advanced property on the network adapter named MyAdapter.




EXAMPLE 2

PS C:\>Set-NetAdapterAdvancedProperty -Name MyAdapter -DisplayName "Flow Control" -DisplayValue "Disable"



This example sets the value of the Flow Control advanced property on the network adapter named MyAdapter.




EXAMPLE 3

PS C:\>Set-NetAdapterAdvancedProperty -Name MyAdapter -RegistryKeyword "*Flo*rol" -RegistryType "REG_SZ" -RegistryValue "Disable"



This example sets the value of the Flow Control advanced property on the network adapter named MyAdapter using wildcard characters in the keyword name.