VMM: Remove VMSwitch Extension: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) K |
Admin (Diskussion | Beiträge) |
||
Zeile 6: | Zeile 6: | ||
In this example, the VMSwitch called '''VMSWITCH001''' and we remove the VMSwitch-Extension called '''5nine vFW extension''' | In this example, the VMSwitch called '''VMSWITCH001''' and we remove the VMSwitch-Extension called '''5nine vFW extension''' | ||
+ | == With VMM Console (GUI) == | ||
+ | You cannot change any settings of a VMSwitch, for example the VMSwitch-Description, with the VMM-Console because VMM change not only the modified settings. | ||
+ | You get the following error: ''EventID 26825: Because instances of the logical switch 'VMSWITCH001 are deployed on the host, the uplink mode for teaming in the logical switch cannot be changed.'' | ||
+ | [[Datei:Vmm error uplink mode.png]] <br> | ||
+ | |||
+ | |||
+ | |||
+ | == With PowerShell == | ||
=== Remove VMSwitch-Extension of all VMSwitches === | === Remove VMSwitch-Extension of all VMSwitches === | ||
<source lang="powershell"> | <source lang="powershell"> |
Version vom 6. Juni 2018, 10:21 Uhr
To remove a VMM VMSwitch Extension follow the steps below:
- Remove VMSwitch Extension of all VMSwitches
- Remove VMSwitch Extension Manager
- Deinstall the VMM Integration Application of the extension
In this example, the VMSwitch called VMSWITCH001 and we remove the VMSwitch-Extension called 5nine vFW extension
Inhaltsverzeichnis
With VMM Console (GUI)
You cannot change any settings of a VMSwitch, for example the VMSwitch-Description, with the VMM-Console because VMM change not only the modified settings.
You get the following error: EventID 26825: Because instances of the logical switch 'VMSWITCH001 are deployed on the host, the uplink mode for teaming in the logical switch cannot be changed.
With PowerShell
Remove VMSwitch-Extension of all VMSwitches
# Get Logical Switch 'VMSWITCH001' $logicalSwitch = Get-SCLogicalSwitch -Name "VMSWITCH001" #Check all available VMSwitch-Extensions (Name and ID) Get-SCVirtualSwitchExtension | Select Name, ID $virtualSwitchExtensions = @()
Add only VMSwitch-Extensions that you want active! For example if you want the VMSwitch-Extensions "Microsoft NDIS Capture" and "Microsoft Windows Filtering Platform" use the following lines:
$virtualSwitchExtensions += Get-SCVirtualSwitchExtension -ID "<Extension-ID>" -Name "Microsoft NDIS Capture" $virtualSwitchExtensions += Get-SCVirtualSwitchExtension -ID "<Extension-ID>" -Name "Microsoft Windows Filtering Platform" Set-SCLogicalSwitch -LogicalSwitch $logicalSwitch -VirtualSwitchExtensions $virtualSwitchExtensions
Remove VMSwitch Extension Manager
Get-SCVirtualSwitchExtensionManager -Manufacturer "5nine Cloud Security" | Remove-SCVirtualSwitchExtensionManager
Deinstall the VMM Integration Application of the extension
- Login to all VMM Server
- Deinstall the VMM Integration Application of the extension