You can unregister the NetApp Element Plug-in for vCenter Server using one of the procedures described for your installation. Unregistering the plug-in has the same effect as disabling it but does not remove all associated files and folders.
Connect-VIServer -Server $vcenter -User administrator@vsphere.local -Password xxxxXXx -Force -ErrorAction Stop -SaveCredentials $em = Get-View ExtensionManager $em.ExtensionList | ft -property Key $em.UnregisterExtension("com.solidfire") $em.UpdateViewData() $em.ExtensionList | ft -property Key Disconnect-VIServer * -Confirm:$false