Intune - Remove Microsoft Teams (personal).

Ahmed Alshatawi 235 Reputation points
2024-09-06T15:28:11.6266667+00:00

Hello,

In our company Windows Autopilot devices, there are two teams apps, one is personal Teams, another is enterprise Teams. To avoid incorrect configuration, I'd to remove the Microsoft Teams (personal) and the Chat icon from Windows devices. Can I achieve this via Intune? Thanks.

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
10,894 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
5,570 questions
0 comments No comments
{count} votes

Accepted answer
  1. ZhoumingDuan-MSFT 17,075 Reputation points Microsoft External Staff
    2024-09-09T02:57:41.9166667+00:00

    @Ahmed Alshatawi, Thanks for posting in Q&A.

    From your description, I know you want to remove Microsoft Teams(personal) and the Chat icon via Intune.

    Based on my research, here are links about how to remove Microsoft Teams(personal) and the Chat icon via Intune you can refer.

    https://www.anoopcnair.com/remove-microsoft-teams-personal-with-intune/

    https://joymalya.com/disable-win11-built-in-teams-with-intune/#Disable_Win11_built-in_Teams_chat_with_Intune_using_Settings_Catalog

    Non-official, just for reference.

    Hope it will help.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Pavel yannara Mirochnitchenko 12,916 Reputation points MVP
    2024-09-06T15:41:50.71+00:00

    During Autopilot, I clean consumer teams with Provisioned package command like this:

    Get-AppxProvisionedPackage -online | where-object {$_.packagename -like "MicrosoftTeams"} | Remove-AppxProvisionedPackage -online

    For existing users, you could try powershell command line like this:***
    **
    Get-AppxPackage -online | where-object {$_.packagename -like "MicrosoftTeams"} | Remove-AppxPackage -online*


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.