Want to remove Microsoft Team Built in App using intune

Muhammad Zeeshan 100 Reputation points
2024-07-24T12:52:25.5266667+00:00

Want to remove Microsoft Team Built in App using intune only we need Microsoft Teams work and school

Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,743 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Aleksandr Kolesnikov 316 Reputation points
    2024-07-24T14:23:58.95+00:00

    Hi Muhammad Zeeshan,

    You can follow MS article Deploy a script to remove built-in apps.

    It contains a link to a script that will:

    • Removes built-in apps from devices.
    • Removes the Microsoft Store app from devices.

    For Teams, you can use a script in Intune like:

    Get-AppxPackage MicrosoftTeams* | Remove-AppxPackage -AllUsers
    Get-AppxProvisionedPackage -online | where-object {$_.PackageName -like "*MicrosoftTeams*"} | Remove-AppxProvisionedPackage -online –Verbose
    

    Best regards,

    Aleksandr


    If the response is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments