PowerShell Logo Small

Set-NetAdapterRdma



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

Sets the remote direct memory access (RDMA) properties on the network adapter.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Set-NetAdapterRdma cmdlet sets the remote direct memory access (RDMA) properties on the network adapter. RDMA is a feature that enables network adapters to transfer data
directly between each other without requiring the main processor of the computer to be part of that transfer. This results in lower latency and lower processor utilization.
The Enable-NetAdapterRdma and DisableNetAdapterRdma cmdlets can also be used to manage RDMA.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287427
Disable-NetAdapterRdma
Enable-NetAdapterRdma
Get-NetAdapterRdma

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Set-NetAdapterRdma –Name MyAdapter -Enabled $True



This example enables RDMA on the network adapter named MyAdapter. Note: The Enable-NetAdapterRdma cmdlet is the preferred cmdlet to perform this operation.




EXAMPLE 2

PS C:\>Set-NetAdapterRdma –Name MyAdapter -Enabled $False



This example disables RDMA on the network adapter named MyAdapter. Note: The Disable-NetAdapterRdma cmdlet is the preferred cmdlet to perform this operation.