Uninstalling third-party vSphere Installation Bundles (VIBs) from an ESXi host involves several technical steps to ensure host stability and proper remediation during upgrades.
VMware vSphere ESXi 7.x
VMware vSphere ESXi 8.x
# esxcli software vib list
# esxcli software vib list | grep -i <vib_name>Eg: # esxcli software vib list | grep -i vmware-fdm
Execute the following command to uninstall the VIB.
# esxcli software vib remove --vibname=<name>
Eg: # esxcli software vib remove --vibname=vmware-fdm
The output is similar to:
Note:
In case there are multiple VIBs with the same name, the remove task will fail with the below error:
More than one VIB matches '<vib _name>'. Try specifying <vendor>:<name> to narrow down to one VIB. id = <vib_name> Please refer to the log file for more details.
Use the below command to specify the version of the vib to be removed:
# esxcli software vib remove --vibname=<vib_name>:<version>
Eg: # esxcli software vib remove --vibname=niccli:428.1.025.5
"Reboot Required" is set to True.esxcli software vib list | grep -i <vib_name>