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: Newest
  1. Matt Dillon 437 Reputation points
    2023-01-23T15:53:13.9666667+00:00

    OK - I lied. While this removes the offending faux shortcuts, it also removes any customization that was done before and after. This is not the results I want. I just want the faux shortcuts removed and any customization done after that to be honored.

    Was this answer helpful?


  2. Matt Dillon 437 Reputation points
    2023-01-23T15:20:25.28+00:00

    Success!!

    I was able to get this working by customizing the JSON file and using a configuration profile. Directions can be found here:

    [https://learn.microsoft.com/en-us/windows/configuration/customize-start-menu-layout-windows-11

    I was able to add and subtract apps to the Start menu. Here is the JSON I used which is the default minus the consumer apps:

    {"pinnedList":[{"desktopAppLink":"%ALLUSERSPROFILE%\\Microsoft\\Windows\\Start Menu\\Programs\\Microsoft Edge.lnk"},{"desktopAppLink":"%ALLUSERSPROFILE%\\Microsoft\\Windows\\Start Menu\\Programs\\Word.lnk"},{"desktopAppLink":"%ALLUSERSPROFILE%\\Microsoft\\Windows\\Start Menu\\Programs\\Excel.lnk"},{"desktopAppLink":"%ALLUSERSPROFILE%\\Microsoft\\Windows\\Start Menu\\Programs\\PowerPoint.lnk"},{"packagedAppId":"Microsoft.WindowsStore_8wekyb3d8bbwe!App"},{"packagedAppId":"Microsoft.Windows.Photos_8wekyb3d8bbwe!App"},{"packagedAppId":"windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel"},{"packagedAppId":"Microsoft.Todos_8wekyb3d8bbwe!App"},{"packagedAppId":"Microsoft.WindowsCalculator_8wekyb3d8bbwe!App"},{"packagedAppId":"Microsoft.WindowsAlarms_8wekyb3d8bbwe!App"},{"packagedAppId":"Microsoft.WindowsNotepad_8wekyb3d8bbwe!App"},{"packagedAppId":"Microsoft.Paint_8wekyb3d8bbwe!App"},{"packagedAppId":"Microsoft.ZuneVideo_8wekyb3d8bbwe!Microsoft.ZuneVideo"},{"desktopAppLink":"%ALLUSERSPROFILE%\\Microsoft\\Windows\\Start Menu\\Programs\\OneNote.lnk"},{"desktopAppLink":"%APPDATA%\\Microsoft\\Windows\\Start Menu\\Programs\\File Explorer.lnk"}]}
    

    Was this answer helpful?

    0 comments No comments

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

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

  5. Rahul Jindal 11,721 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

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.