so i hit a little snag while trying to use set-nicteamingpolicy cmdlet.
I'm sure its my lack of knowledge, but I'm learing as I go along.
When i try to run the following:
$policy = Get-VirtualSwitch -VMHost (Get-VMHost *) -Name vSwitch2 | Get-NicTeamingPolicy
$policy
| Set-NicTeamingPolicy -LoadBalancingPolicy LoadBalanceSrcId
-NetworkFailoverDetectionPolicy LinkStatus -NotifySwitches $true
-FailbackEnabled $true -MakeNicActive "vmnic4" -MakeNicStandby "vmnic10"
I get the following error:
The method or operation is not implemented.
At :line:3 char:30
+
$policy | Set-NicTeamingPolicy <<<< -LoadBalancingPolicy
LoadBalanceSrcId -NetworkFailoverDetectionPolicy LinkStatus
-NotifySwitches $true -FailbackEnabled $true -MakeNicActive "vmnic1"
-MakeNicStandby "vmnic2"
I know it has something to do with -makenicactive and standby because if i remove that from the code it works fine. I'm just not sure what those options require as a parameter. any help is greatly appreciated.
Alex