Uninstall Old version Teamviewer

Hello! Started deploying a new version of the TeamViewer host by SCCM. Using the query SCCM, I found a lot of old versions of TeamViewer 11, 12, 13, 14. I Tried to delete it using msiexec /x, uninstall.exe /s, deleted registry branches. But still the new version is not installed, there are some remnants. Using the tool from Microsoft install and uninstall Fix was able to completely remove the old versions, but this is not an option, since there are many computers. Is there a universal tool for deleting Teamviewer or a script? Thank you!

Tagged:

Best Answer

Answers

  • JeanK
    JeanK Posts: 6,984 Community Manager 🌍

    Hello @Mikushkin-a,

    Thank you for your message and welcome to the TeamViewer Community! ?

    Unfortunately, we do not have any universal tool for deleting TeamViewer.

    I thank you in advance for your understanding.

    Best regards

    Jean

    Community Manager

  • JeanK
    JeanK Posts: 6,984 Community Manager 🌍

    Hello @Mikushkin-a,

    Thank you so much for sharing your solution! ?

    We will make sure to share it with any customer/user that has this problem. ??

    Best regards

    Jean

    Community Manager

  • S_Hedemand
    S_Hedemand Posts: 2 ✭✭

    This usually works:

    for /f "tokens=4 delims=\" %a in ('dir /b %SystemRoot%\installer /s ^| find /i "TeamViewer.ico"') do start /w MsiExec.exe /X%a /qb-

    If you put it in a .bat file, use %%a instead of %a