Windows 11 - Autopilot - remove Consumer Shortcuts

Matt Dillon 437 Reputation points
2023-01-19T20:37:35.0733333+00:00

Is there a configuration setting in Intune that would remove the shortcuts for Spotify,TikTok, WhatsApp, Disney+, etc that seem to appear on a fresh install of Windows 11?

I have successfully used Proactive Remediation to get rid of the Consumer version of Teams, and was able to successfully remove the Teams Chat icon using a configuration profile. Is there a configuration profile that will help remove the consumer shortcuts?

Microsoft Security | Windows Autopilot
Microsoft Security | Intune | Configuration
Microsoft Security | Intune | Other
0 comments No comments

7 answers

Sort by: Most helpful
  1. Rudy Ooms 726 Reputation points MVP
    2023-01-23T09:43:01.3666667+00:00

    Multiple options you got.. As those apps you mentioned are Store Apps and are installed in the c:\windows\systemapps if I am not mistaken. It also depends if the user is admin or not.... but this is one example to remove it with PowerShell

    One example to remove spotify

    $RunningApp =Get-Process -Name "spotify*"

    If ($RunningApp){Stop-Process -InputObject $RunningApp -Force}

    Get-AppPackage -NAMESpotifyAB.SpotifyMusic | Remove-AppPackage

    In the past I used the Microsoft store for business (I know... ) so I could add the apps in there and just select the uninstall when the app was synced to Intune. (the new Microsoft store app functionality doesn't have those apps if I am not mistaken).

    So maybe you could use the agentexecutor from the device to uninstall the apps, just like I am mentioning in this blog below

    [https://call4cloud.nl/2022/12/hotel-microsoft-store-apps-transformania/

    Feel free to reach out to me on social media if you have any additional questions about it

    Was this answer helpful?

    1 person found this answer helpful.

  2. Pavel yannara Mirochnitchenko 13,456 Reputation points MVP
    2023-01-23T14:59:37.88+00:00

    With Windows 11 Ent, I don't see any crapware, just MAIL and Teams Consumer which icon can be removed with Settings Catalog.

    Was this answer helpful?

    0 comments No comments

  3. Rahul Jindal 11,636 Reputation points
    2023-01-20T09:27:16.17+00:00

    The apps will show up when you are using Pro SKU. Or are you noticing it on Ent as well? No built-in profile to address these apps, but you can use a script or perhaps sync the apps from the store and push them as uninstall.

    Was this answer helpful?

    0 comments No comments

  4. Crystal-MSFT 54,311 Reputation points Microsoft External Staff
    2023-01-20T01:55:38.4533333+00:00

    @Matt Dillon, Thanks for the reply. After researching, I didn't find the configuration profile to remove Spotify,TikTok, WhatsApp, Disney+ shortcut,. But it seems we can use Proactive Remediation feature to do this. Here is a link I find for your reference:

    https://scloud.work/en/proactively-remove-unwanted-shortcuts/?amp=1

    Note: Non-Microsoft link. Just for the reference.

    You can try and see if it can work.


    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.

    Was this answer helpful?


  5. BunnyTub 0 Reputation points
    2023-01-19T20:48:40.11+00:00

    Unless you have Windows 11 hooked up to a domain, probably not.

    I'm not an employee or expert, but Microsoft kind of sucks when it comes to stuff like this.

    Was this answer helpful?


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.