How to permanently uninstall Microsoft Teams? [duplicate]

The question's in the title. The official website gives only details for Windows and Mac:

https://support.office.com/en-us/article/uninstall-microsoft-teams-3b159754-3c26-4952-abe7-57d27f5f4c81.


Solution 1:

Because the Linux version of the Teams application is supplied as a .deb file, the installation is registered in your package management. Note, however, that as part of the installation process, Microsoft also added a software source (PPA) for Teams. That ensures that you automatically receive updates.

The package is named teams. You can see this in the output of the command dpkg -l *team*. Remove it using

sudo apt remove teams

You can remove the added PPA using "Software & Updates", "Other Software" tab, or using the terminal:

sudo add-apt-repository --remove ppa:repos/ms-teams

Solution 2:

In an older version of Ubuntu Like mine, I use the following line.

sudo rm -r {the directory of where you installed the "team"}

It depends on How you install it. If you install from Microsoft Website, .deb then it is easily uninstalled with the above line. If you installed using Wine but using the .exe. file then you need to do something About the Wine

wine uninstall

** I used an old version, It might work for you and probably not. Hope this help