PowerShell Logo Small

Set-NetAdapterQos



This is the built-in help made by Microsoft for the command 'Set-NetAdapterQos', in PowerShell version 4 - as retrieved from Windows version 'Microsoft Windows 8.1 Enterprise' 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 quality of service (QoS) properties of the network adapter, specifically data center bridging (DCB).

SYNTAX


Set-NetAdapterQos [-Name] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-Enabled <Boolean>] [-IncludeHidden] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] [-C
onfirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterQos [-AsJob] [-CimSession <CimSession[]>] [-Enabled <Boolean>] [-IncludeHidden] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] -InterfaceDescription
<String[]> [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetAdapterQos [-AsJob] [-CimSession <CimSession[]>] [-Enabled <Boolean>] [-NoRestart] [-PassThru] [-ThrottleLimit <Int32>] -InputObject <CimInstance[]> [-Confirm]
[-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetAdapterQos cmdlet sets the quality of service (QoS) properties on a network adapter. Currently this cmdlet only supports enabling or disabling QoS on a net
work adapter. The Enable-NetAdapterQos and DisableNetAdapterQos cmdlets can also be used.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287426
Disable-NetAdapterQos
Enable-NetAdapterQos
Get-NetAdapter
Get-NetAdapterQos

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Set-NetAdapterQos –Name DCBAdapter2 -Enabled $true



This example enables QoS on the network adapter named DCBAdapter2. Note: The Enable-NetAdapterQos cmdlet is the preferred cmdlet to perform this operation.




EXAMPLE 2

PS C:\>Set-NetAdapterQos –Name DCBAdapter2 -Enabled $false



This example disables QoS on the network adapter named DCBAdapter2. Note:The Disable-NetAdapterQos cmdlet is the preferred cmdlet to perform this operation.