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 Security | Intune | Other
{count} votes

1 answer

Sort by: Most helpful
  1. Aleksandr Kolesnikov 641 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.

    1 person found this answer helpful.
    0 comments No comments

Your answer

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