PowerShell Logo Small

Set-NetLbfoTeam



This is the built-in help made by Microsoft for the command 'Set-NetLbfoTeam', 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 parameters on the specified NIC team.

SYNTAX


Set-NetLbfoTeam [[-Name] <String[]>] [-AsJob] [-CimSession <CimSession[]>] [-LoadBalancingAlgorithm <LBAlgos>] [-PassThru] [-TeamingMode <TeamingModes>] [-ThrottleLimit
<Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetLbfoTeam [-AsJob] [-CimSession <CimSession[]>] [-LoadBalancingAlgorithm <LBAlgos>] [-PassThru] [-TeamingMode <TeamingModes>] [-TeamNicForTheTeam <CimInstance>]
[-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetLbfoTeam [-AsJob] [-CimSession <CimSession[]>] [-LoadBalancingAlgorithm <LBAlgos>] [-MemberOfTheTeam <CimInstance>] [-PassThru] [-TeamingMode <TeamingModes>]
[-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetLbfoTeam [-AsJob] [-CimSession <CimSession[]>] [-LoadBalancingAlgorithm <LBAlgos>] [-PassThru] [-TeamingMode <TeamingModes>] [-ThrottleLimit <Int32>] -InputObject
<CimInstance[]> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetLbfoTeam cmdlet sets the TeamingMode or LoadBalancingAlgorithm parameters on the specified NIC team.


You need administrator privileges to use Set-NetLbfoTeam.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?linkid=294344
New-NetLbfoTeam
Get-NetLbfoTeam
Rename-NetLbfoTeam
Remove-NetLbfoTeam

REMARKS

<

Examples


Example 1: Set the teaming mode

PS C:\> Set-NetLbfoTeam -Name Team1 –TeamingMode LACP



This command sets the teaming mode of the team named Team1 to LACP.




Example 2: Set the load balancing algorithm

PS C:\> Set-NetLbfoTeam -Name Team1 –LoadBalancingAlgorithm HyperVPorts



This command sets the load balancing algorithm of the team named Team1 to HyperVPorts.




Example 3: Set the teaming mode and load balancing algorithm

PS C:\> Set-NetLbfoTeam -Name Team1 –TeamingMode LACP –LoadBalancingAlgorithm HyperVPorts



This command sets the teaming mode and load balancing algorithm of the team named Team1 at the same time. The teaming mode is set to LACP and the load balancing algorithm is
set to HyperVPorts.