PowerShell Logo Small

Get-NetAdapterRdma



This is the built-in help made by Microsoft for the command 'Get-NetAdapterRdma', 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 remote direct memory access (RDMA) properties for this network adapter.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-NetAdapterRdma cmdlet gets the remote direct memory access (RDMA) properties of an RDMA-capable network adapter. RDMA is a feature that enables network adapters to
transfer data directly between each other without requiring the main processor of the system to be part of that transfer. This results in lower latency and lower processor
utilization.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287404
Format-List
Where-Object
Disable-NetAdapterRdma
Enable-NetAdapterRdma
Set-NetAdapterRdma

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-NetAdapterRdma –Name MyAdapter



This example gets the RDMA properties from the network adapter named MyAdapter.




EXAMPLE 2

PS C:\>Get-NetAdapterRdma –Name MyAdapter | Format-List -Property *



This example displays all the RDMA properties from the adapter named MyAdapter.




EXAMPLE 3

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



This example gets all RDMA capable network adapters with RDMA enabled.