How to Uninstall Microsoft Teams

Microsoft Teams is a handy tool that businesses can use to collaborate with each other. It makes communication much easier if, for some reason, some employees are in the office and others work from home. Despite its usefulness, you might have found a better tool and want to uninstall Microsoft Teams. If that’s the case, how can you do this?

Are the steps different if you have Microsoft Teams on Windows, Mac, iPhone, or Android? Keep reading to find out.

How to Uninstall Microsoft Teams

Depending on the device you’ve used to install Microsoft Teams, the steps will vary. In the next section, we’ll explore how to uninstall Microsoft Teams on Windows 10, Mac, iPhone, iPad, Android, and Linux.

How to Uninstall Microsoft Teams on Windows 10

There are two ways to uninstall Microsoft Teams on Windows 10. We’ll explore them in the following section.

How to Uninstall Microsoft Teams on Windows 10 Through Settings

If you’ve installed Microsoft Teams on Window 10 and want to uninstall the app, here’s what you need to do:

  1. Right-click on the Windows icon.

  2. Tap on “Apps and Features” on the top of the window.

  3. Scroll down and look for “Microsoft Teams.”

  4. Click on it and tap “Uninstall.”

  5. You might get a message asking you to confirm if you want to remove the app. Tap “Uninstall” to confirm.

  6. Then, find “Teams Machine-Wide Installer” and click on it.

  7. Tap on “Uninstall.”

  8. Confirm you want to remove the app.

Note: It’s crucial to uninstall “Teams Machine-Wide Installer” too. Forgetting to do so won’t uninstall Microsoft Teams on your Windows 10, although you’ve removed the app. Therefore, make sure to remove “Teams Machine-Wide Installer.”

How to Uninstall Microsoft Teams on Windows 10 Through Control Panel

Another way to uninstall Microsoft Teams on Windows 10 is through the Control Panel. Follow these steps to do so:

  1. Tap on the Windows key on the bottom left of the screen.

  2. Then, type “Control Panel.”

  3. Click “Open” to launch the “Control Panel.”

  4. Then, tap on “Programs.”

  5. Under “Programs and Features,” select “Uninstall a program.”

  6. Scroll down until you see “Microsoft Teams.”

  7. Right-click on it and tap “Uninstall.”

  8. Find “Teams Machine-Wide Installer.”

  9. Right-click on it and hit “Uninstall.”

There you go! You’ve successfully uninstalled Microsoft Teams from your Windows 10.

How to Uninstall Microsoft Teams on Mac

If you have Mac, check out the steps below to uninstall Microsoft Teams:

  1. First of all, ensure Microsoft Teams isn’t already launched. If it is, close it.

  2. Hover over the dock and tap on the “Finder” icon. Then, click on “Applications.”

  3. Look for “Microsoft Teams” and move it to the trashcan in the doc.

  4. Right-click on the trashcan.

  5. Click on “Empty Trash.”

When uninstalling Microsoft Teams from Mac, make sure to do the last step. This will ensure that you remove the app for good.

How to Uninstall Microsoft Teams on Linux

Those who use Linux and want to uninstall Microsoft Teams need to do this:

  1. Open the terminal by hitting “Ctrl,” “Alt,” and “T.”
  2. Then, type the following “sudo apt-get remove <microsoftteams>.”
  3. Hit “Enter.”

How to Uninstall Microsoft Teams on iPhone

Some folks use Microsoft Teams on their iPhones. But if they want to delete this app, how do they do it? Follow the steps below:

  1. Find “Microsoft Teams” on your iPhone.

  2. Hold it for a few seconds.

  3. Click on “Delete App.”

  4. Confirm you want to delete it by clicking “Delete.”

It’s simple as that!

How to Uninstall Microsoft Teams on iPad

If you’ve installed Microsoft Teams on your iPad, there a couple of ways to uninstall the app. Check them out in the next section.

Uninstalling Microsoft Teams on iPad from Home Screen

If there’s a Microsoft Teams icon on your home screen, here’s how to uninstall the app:

  1. Find the app on the Home Screen.
  2. Click on it and hold for a few moments.
  3. The app will start wiggling.
  4. Look for the “X” on the top left corner of the app.
  5. Click on it.
  6. Confirm you want to uninstall the app by hitting “Delete.”

Uninstalling Microsoft Teams on iPad from Settings

Another way to uninstall Microsoft Teams on iPad is from the Settings feature. This is how to do so:

  1. Head over to “Settings.”
  2. Click on “General.”
  3. Tap on “Storage and iCloud Usage.”
  4. Click on “Manage Storage.”
  5. Find “Microsoft Teams.”
  6. Click on the app.
  7. Then, tap “Delete App.”

How to Uninstall Microsoft Teams on Android

Those who use Androids can uninstall Microsoft Teams in a few ways. Check them out below.

Uninstalling Microsoft Teams on Android from Home Screen

If there’s a Microsoft Icon on the Home Screen, deleting it will be relatively simple. Here’s how to do this:

  1. Locate the app and click on it.
  2. Hold for a few moments.
  3. You’ll see the “Uninstall” option. Click on it.
  4. Confirm you want to delete the app.

Uninstalling Microsoft Teams on Android from Play Store

It’s also possible to delete Microsoft Teams from Play Store. Follow these steps:

  1. Launch Play Store.
  2. Click on the hamburger menu on the top left corner of the screen.
  3. Then, select “My apps and games.”
  4. Tap on the “Installed” panel.
  5. Look for “Microsoft Teams.”
  6. Tap on the app.
  7. Click on the “Uninstall” button below the app icon.
  8. Confirm you want to delete the app.

Uninstalling Microsoft Teams on Android from Settings

To uninstall Microsoft Teams from Settings, do this:

  1. Launch “Settings.”
  2. Click on “Apps.”
  3. Find “Microsoft Teams” and click on it.
  4. Finally, hit “Uninstall.”

How to Uninstall Microsoft Teams Using Command Line

If you want to uninstall Microsoft Teams using the command line, here’s what you should do:

  1. Click on the Windows key in the bottom-left part of the screen.
  2. Type “PowerShell.”
  3. Right-click on it and tap “Run as administrator.”
  4. Then, copy the following:

    function unInstallTeams($path) {

     $clientInstaller = “$($path)\Update.exe”

     try {

     $process = Start-Process -FilePath “$clientInstaller” -ArgumentList “–uninstall /s” -PassThru -Wait -ErrorAction STOP

     if ($process.ExitCode -ne 0)

     {

     Write-Error “UnInstallation failed with exit code $($process.ExitCode).”

     }

     }

     catch {

     Write-Error $_.Exception.Message

     }

    }

    # Remove Teams Machine-Wide Installer

    Write-Host “Removing Teams Machine-wide Installer” -ForegroundColor Yellow

    $MachineWide = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -eq “Teams Machine-Wide Installer”}

    $MachineWide.Uninstall()

    # Remove Teams for Current Users

    $localAppData = “$($env:LOCALAPPDATA)\Microsoft\Teams”

    $programData = “$($env:ProgramData)\$($env:USERNAME)\Microsoft\Teams”

    If (Test-Path “$($localAppData)\Current\Teams.exe”)

    {

     unInstallTeams($localAppData)

    }

    elseif (Test-Path “$($programData)\Current\Teams.exe”) {

     unInstallTeams($programData)

    }

    else {

     Write-Warning “Teams installation not found”

    }

  5. Tap “Enter.”

Doing so will remove Microsoft Teams on Windows via command line.

How to Uninstall Microsoft Teams for All Users

To uninstall Microsoft Teams for all users, here’s what you should do:

  1. Click on the Windows key in the bottom-left part of the screen.
  2. Type “PowerShell.”
  3. Right-click on it and tap “Run as administrator.”
  4. Then, copy the following:

    # Get all Users

    $Users = Get-ChildItem -Path “$($ENV:SystemDrive)\Users”

    # Process all the Users

    $Users | ForEach-Object {

     Write-Host “Process user: $($_.Name)” -ForegroundColor Yellow

     #Locate installation folder

     $localAppData = “$($ENV:SystemDrive)\Users\$($_.Name)\AppData\Local\Microsoft\Teams”

     $programData = “$($env:ProgramData)\$($_.Name)\Microsoft\Teams”

     If (Test-Path “$($localAppData)\Current\Teams.exe”)

     {

     unInstallTeams($localAppData)

     }

     elseif (Test-Path “$($programData)\Current\Teams.exe”) {

     unInstallTeams($programData)

     }

     else {

     Write-Warning “Teams installation not found for user $($_.Name)”

     }

    }

  5. Hit “Enter.”

How to Permanently Uninstall Microsoft Teams

Those who use Microsoft Teams may have a problem uninstalling the app because they don’t uninstall “Teams Machine-Wide Installer.” To remove the app permanently, you also need to remove this app. Here’s how to do this:

  1. Tap on the Windows key and type “Settings.”
  2. Click “Open.”
  3. Then, select “Apps.”
  4. Click on “Apps and features.”
  5. Locate “Teams Machine-Wide Installer.”
  6. Tap “Uninstall.”

Additional FAQ

In the following section, we’ll explore some of the most commonly asked questions regarding Microsoft Teams uninstallation.

Why Does Microsoft Teams Keep Reinstalling Itself?

Most Windows users have faced this issue – Microsoft Teams keeps reinstalling. The reason for this is surprisingly simple – you didn’t properly delete the app in the first place. To make sure you delete it entirely, you also need to uninstall “Teams Machine-Wide Installer.”

How Do You Remove People from Microsoft Teams?

If, for some reason, you need to remove a person from Microsoft Teams, here’s what you should do:

• Go to the team name in the sidebar.

• Click on “More options.”

• Then, hit “Manage Team.”

• Click on “Members.”

• There will be a list of team members. Look for the member you want to remove. Click on “X” next to their name to remove them from Microsoft Teams.

No More Issues Uninstalling Microsoft Teams

Microsoft Teams is a handy collaborating tool for many individuals and businesses. However, if you find a better solution, it’s possible to remove it.

If you’ve had problems uninstalling Microsoft Teams from your device in the past, you won’t have such problems anymore. Simply follow the steps we’ve provided in this article.

Why do you want to uninstall Microsoft Teams? Have you tried removing it in the past? Share your experience with us in the comments section below.

Disclaimer: Some pages on this site may include an affiliate link. This does not effect our editorial in any way.