PowerShell Logo Small

Get-NetAdapterVmq



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

Gets the virtual machine queue (VMQ) properties of the network adapter.

SYNTAX


Get-NetAdapterVmq [[-Name] <String[]>] [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-ThrottleLimit <Int32>] [<CommonParameters>]
Get-NetAdapterVmq [-AsJob] [-CimSession <CimSession[]>] [-IncludeHidden] [-ThrottleLimit <Int32>] -InterfaceDescription <String[]> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterVmq cmdlet gets the virtual machine queue (VMQ) properties of of VMQ-capable network adapters. VMQ is a scaling networking technology for vmswitch that
hashes incoming packets based on the destination MAC address.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287410
Format-List
Where-Object
Disable-NetAdapterVmq
Enable-NetAdapterVmq
Get-NetAdapterVmqQueue
Set-NetAdapterVmq

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-NetAdapterVmq –Name GuestTrafficAdapter



This example gets the VMQ properties of the network adapter named GuestTrafficAdapter.




EXAMPLE2

PS C:\>Get-NetAdapterVmq –Name GuestTrafficAdapter | Format-List -Property *



This example displays all of the VMQ properties of the network adapter named GuestTrafficAdapter.




EXAMPLE3

PS C:\>Get-NetAdapterVmq –Name * | Where-Object -FilterScript { $_.Enabled }



This example gets all of the VMQ-capable network adapters with VMQ is enabled.