blob: e03f9d9fbf041e04a3157d16a66f6579421fe5b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# Copyright (c) Microsoft Corporation. All Rights Reserved.
#
Import-Module Hyper-V
$switch = Get-VmSwitch -Name "CorpNet"
$features = Get-VmSwitchExtensionSwitchFeature -VmSwitch $switch -FeatureName "MSForwardExt Mac Address Policy"
if ($features -ne $null)
{
Remove-VmSwitchExtensionSwitchFeature -VmSwitch $switch -VmSwitchExtensionFeature $features
}
|