Examples/Resources/xNetworkTeam/1-AddNetworkTeam.ps1
<#
.EXAMPLE Creates the Host Team with the NIC1 and NIC2 Interfaces #> Configuration Example { param ( [Parameter()] [System.String[]] $NodeName = 'localhost' ) Import-DSCResource -ModuleName xNetworking Node $NodeName { xNetworkTeam HostTeam { Name = 'HostTeam' TeamingMode = 'SwitchIndependent' LoadBalancingAlgorithm = 'HyperVPort' TeamMembers = 'NIC1','NIC2' Ensure = 'Present' } } } |