In this short blog I’m going to show how to add a network adapter to a SET switch team. With Windows Server 2016 Microsoft released a new way of teaming called “Switch Embedded Teaming” also known as SET. With SET we have to ability to create a team which is part of the virtual switch. More information here.
Add / Remove network adapters from a SET team
For adding or removing network adapters from a SET team you can use the following powershell cmdlets:
Add-VMSwitchTeamMember -VMSwitch $VMSwitch -NetAdapterName "Ethernet","Ethernet 2"
OR
Set-VMSwitchTeam -VMSwitch $VMSwitch -NetAdapterName "Ethernet","Ethernet 2"
—
Thank you for reading my blog.
If you have any questions or feedback, leave a comment or drop me an email.
Darryl van der Peijl
http://www.twitter.com/DarrylvdPeijl
SET Cmdlets: Add-VMSwitchTeamMember und Remove-VMSwitchTeamMember
Thanks, updated 🙂
$vswitch = Get-VMSwitch -Name “vswitch”
Add-VMSwitchTeamMember -VMSwitch $VMSwitch -NetAdapterName “Ethernet”,”Ethernet 2″
there is a small mistake 🙂
$VMSwitch should be $vswitch