How do you uninstall the newer TeamViewer host via command line since it no longer has the uninstall.exe included in the installation folder?
You can just use:
msiexec /x "{PRODUCT_CODE}" /qn
or
$productCode = "{PRODUCT_CODE}"
$arguments = "/x $productCode /qn"
Start-Process -FilePath "msiexec.exe" -ArgumentList $arguments -Wait -NoNewWindow
Intune does it automatically but you can get Product Code from the TeamViewer_Host.msi (using Orca under Property).
If in windows land, you can use WMIC to do it. Similar to the following
wmic product where "name = 'Teamviewer'" call uninstall /nointeractive
Same question here....glad to see it's unanswered after over a month....
Have you heard?! On October 21, we’re hosting TeamViewer Rise—and we want to see you there! The digital event dedicated to IT experts. Join us to hear industry leaders as they share demos, roadmaps, and real-world strategies for delivering better IT. Take part in our first annual event for Proven, ready-to-deploy…