Windows 11 - Autopilot - remove Consumer Shortcuts

Matt Dillon 1,211 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?

Windows Autopilot
Windows Autopilot
A collection of Microsoft technologies used to set up and pre-configure new devices and to reset, repurpose, and recover devices.
407 questions
Microsoft Intune Configuration
Microsoft Intune Configuration
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Configuration: The process of arranging or setting up computer systems, hardware, or software.
1,715 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,321 questions
0 comments No comments
{count} votes

7 answers

Sort by: Most helpful
  1. Rudy Ooms 596 Reputation points
    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

    1 person found this answer helpful.

  2. 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.


  3. Crystal-MSFT 42,956 Reputation points Microsoft Vendor
    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.


  4. Rahul Jindal [MVP] 9,141 Reputation points MVP
    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.

    0 comments No comments

  5. Pavel yannara Mirochnitchenko 11,711 Reputation points
    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.

    0 comments No comments