We've had our two virtual servers migrated to a new service provider and they converted them from VMware to Hyper-V. This left behind "VMware Tools", which should be removed. But from "Apps & features", when I choose to uninstall it, it shows a small uninstallation dialog for a second or two, then it vanishes and nothing else happens.
How do I uninstall VMware Tools in this situation?
The virtualized OS is Windows Server 2016.
With help of @vssher comment I trie this command line:
msiexec.exe /uninstall {742FCBAF-EE5D-48B2-9E95-DA0513B79570} /lv!* vmwareuninst.log
Looking at the log, I find this:
MSI (s) (4C:F8) [10:31:19:589]: Doing action: VM_LogStart
Action start 10:31:19: VM_LogStart.
MSI (s) (4C:40) [10:31:19:589]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIC327.tmp, Entrypoint: VMLogStart
MSI (s) (4C:9C) [10:31:19:604]: Generating random cookie.
MSI (s) (4C:9C) [10:31:19:604]: Created Custom Action Server with PID 6776 (0x1A78).
MSI (s) (4C:F0) [10:31:19:620]: Running as a service.
MSI (s) (4C:78) [10:31:19:636]: Hello, I'm your 64bit Impersonated custom action server.
CustomAction VM_LogStart returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
Action ended 10:31:19: VM_LogStart. Return value 3.
MSI (s) (4C:F8) [10:31:19:808]: Doing action: VM_SendMsiLogToHostOnError
Action start 10:31:19: VM_SendMsiLogToHostOnError.
MSI (s) (4C:A0) [10:31:19:823]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIC412.tmp, Entrypoint: VMSendMsiLogToHost
CustomAction VM_SendMsiLogToHostOnError returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
Action ended 10:31:19: VM_SendMsiLogToHostOnError. Return value 3.
Action ended 10:31:19: INSTALL. Return value 3.
Looks to me like it's trying to send log to the OS hosting the VM, which of course won't work, since the new provider's host is not "VMware aware".
So, I suspect I need to do some kind of manual uninstallation. Any ideas? Maybe I should just ask VMware support...