Share via

How to fully strip Xbox and consumer bloatware from Win 11 Pro?

Dull Pretty 0 Reputation points
2026-04-30T08:19:02.65+00:00

Setting up some new machines for the accounting team and I really don't want them seeing TikTok, Spotify, and Xbox game bar on their start menu. I've tried a few PowerShell scripts to rip out the AppxPackages, but they keep coming back after a feature update. What's the best enterprise way to kill consumer bloat for good?

Windows for business | Windows 365 Business
0 comments No comments

2 answers

Sort by: Most helpful
  1. RAUNIT SINGH 0 Reputation points
    2026-04-30T09:06:03.6633333+00:00

    When you try to get rid of Xbox and other extra apps from Windows 11 you are not just deleting programs. Windows treats many of these as built-in system apps so removing them properly takes some thought.

    First there are apps you see and use, like Xbox, Clipchamp or Skype. These are installed for you. Deleting them only cleans your space but does not remove Xbox from Windows itself.

    Windows also keeps a hidden copy of these apps called provisioned packages. It's like a template. Even if you delete an app Windows can quietly reinstall Xbox later after updates or when someone else logs in. That's why just uninstalling is not enough.

    Then there is another layer: Windows "consumer features". This is Microsofts way of suggesting and reinstalling apps. It's the reason apps sometimes come back even after you remove them. You need to disable this behavior if you want a stable system.

    About Xbox. It's not just one app. Xbox is a group of apps plus background services that keep running even if you do not use them. These services can run in the background use system resources and try to reconnect or reinstall components.

    So to fully remove Xbox you also need to shut down those services, not the visible Xbox apps.

    At the end of the day a proper cleanup of Xbox works like this:

    • You remove what you can see
    • You remove what Windows secretly keeps in reserve
    • You stop Windows from reinstalling Xbox
    • You disable anything still running in the background, for Xbox
    0 comments No comments

  2. Scott Nguyen 1,150 Reputation points Independent Advisor
    2026-04-30T09:00:53.9166667+00:00

    Hello,

    I would suggest that you should enable the Turn off Microsoft consumer experiences policy located in Computer Configuration > Administrative Templates > Windows Components > Cloud Content. If you are managing these via registry, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent and create a DWORD named DisableWindowsConsumerFeatures set to 1.

    In case you are managing with GPOs, you could also execute Get-AppxProvisionedPackage -Online | Where-Object {$_.DisplayName -match 'TikTok|Spotify|Xbox'} | Remove-AppxProvisionedPackage -Online to wipe the installer files from the OS source so they cannot reinstall for new profiles. Then pair with a locked-down Start Layout XML or JSON via Group Policy ensures the icons stay gone even if a system update attempts to re-register a stub.

    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.