Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Learn how to manage SET
October 1, 2016
Q. How is SET managed?
A. Neither Hyper-V Manager nor the LBFO management tools support SET. Instead it is managed through PowerShell or SCVMM. With PowerShell to create a SET just add the -EnableEmbeddedTeaming $true switch or just add multiple NICs which means its implicitly set, i.e. one of the following:
New-VMSwitch -Name TeamedvSwitch -NetAdapterName "NIC 1","NIC 2" `-EnableEmbeddedTeaming $true#Same as :New-VMSwitch -Name TeamedvSwitch -NetAdapterName "NIC 1","NIC 2"
You May Also Like