1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#1.In a web browser, navigate to http://<vcenter server name or IP>/mob.
#Where <vcenter server name or IP> is the name of your vCenter Server or its IP address.
Connect-VIServer vcenter001
#2.Click Content.
#3.Click ExtensionManager.
$em = Get-View ExtensionManager
#4.Select and copy the name of the plug-in you want to remove from the list of values under Properties.
$em.ExtensionList | ft -Property Key
#5.Click UnregisterExtension. A new window appears.
#6.Paste the name of the plug-in and click Invoke Method. This removes the plug-in.
$em.UnregisterExtension("extension key name")
#7.Close the window.
#8.Refresh the Managed Object Type:ManagedObjectReference:ExtensionManager window to verify if the plug-in is removed successfully.
# Note that we need to refresh the data before listing the plugins
$em.UpdateViewData()
$em.ExtensionList | ft -Property Key
# Log out
Disconnect-VIServer
|