How to Uninstall the Xbox Game Bar on Windows for a Clean System

How to Remove the Xbox Game Bar from Windows (Seriously) No Nonsense

Here’s the thing. If you’re like me, the Xbox Game Bar just seems to hang around, even if you don’t want it cluttering your screen or gobbling up resources. For some reason, Microsoft makes it surprisingly tricky to completely get rid of it, especially on Windows 11. It’s almost like they want to hide it away and make disabling or uninstalling a hassle. After trying out a few methods, here’s what actually worked for me — mostly using PowerShell, with a couple of caveats.

Using PowerShell to Uninstall the Xbox Game Bar

This is the most common approach I’ve come across and what I tried first. PowerShell isn’t exactly user-friendly if you’re not used to command prompts, but it’s pretty effective if you get it right. You need to run it as an administrator; otherwise, it won’t let you remove built-in apps. To do that, press Windows key + S, type “PowerShell”, then right-click on Windows PowerShell and choose “Run as administrator”. Don’t skip this step — normal permissions won’t cut it.

Once PowerShell is open, the first thing is to identify the exact package name because Microsoft plays hide-and-seek with it. Run:

Get-AppxPackage -Name *Xbox*

This command lists all packages with “Xbox” in their name. Look for something like Microsoft.XboxGamingOverlay or similar. The exact name can vary depending on your version of Windows or recent updates, so don’t assume it’s the same as in other guides. The main point is to find the right one related to the overlay or system service for Xbox.

Once you’ve found it, you can try removing it with:

Get-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackage

This should uninstall the overlay and stop it from appearing in your apps, but… here’s where I got stuck too. Sometimes this isn’t enough, especially if Windows keeps reinstalling it after updates or from the Store cache. Yes, you might need to include the -AllUsers parameter or use Remove-AppxProvisionedPackage for system-wide removal — but that can be tricky and risky if you’re not entirely sure what you’re doing. Proceed with caution. For example, to remove it for all users, you might need:

Remove-AppxPackage -Package <full_package_name>

or

Remove-AppxProvisionedPackage -Online -PackageName <package_name>

Replace the placeholders with the actual package name you identified earlier. Sometimes, executing these commands might require a few attempts or a system restart, as Windows sometimes “undoes” your efforts during updates or maintenance.

Does it actually work? How to check.

I didn’t just blindly trust PowerShell to do the job. After running the commands, I checked in Settings > Apps > Installed Apps (or, on Windows 11, Apps > Installed Apps) to see if the Xbox Game Bar was gone. If you still see it there, try running the commands again or double-check that you’re using the correct package name. Sometimes, Windows Store updates or reinstallation can bring it back, so resetting the Store cache can help. Just run wsreset.exe in the Run dialog (Win + R). That resets the Microsoft Store cache, which can be useful for stubborn built-in apps that reappear after updates.

Extra tips and troubleshooting

Uninstalling the Xbox Game Bar completely can be a bit of a fiddle because it’s integrated into Windows at a system level. PowerShell is your best shot, but it’s not foolproof. If it keeps coming back, you might consider disabling the overlay through Group Policy (handy if you have Windows 10 Pro or Enterprise). To do that, press Win + R, type gpedit.msc, and navigate to:

  • Computer Configuration > Administrative Templates > Windows Components > Xbox Game Bar
  • Set “Allow Xbox Game Bar to record clips, take screenshots, and stream” to Disabled. This stops the overlay from appearing but doesn’t completely remove the app.

If that’s still not enough, you can try turning it off via Optional Features (Settings > Apps > Optional Features), though that usually just disables parts of it rather than removing it completely.

Like I said, this stuff can be a bit flaky. Windows updates or OEM restrictions might restore or block removal altogether—particularly on certain tablets or OEM devices. If you’re feeling brave, avoid messing with deep system files unless you’re comfortable with the risks. Resetting Windows or doing a clean install will definitely clear it out, but that’s probably overkill for most users.

Final thoughts

This whole process can be a bit of a headache. The Xbox Game Bar is quite integrated into Windows, so it’s no surprise that removing it entirely is tricky. But if you’re patient, cautious, and follow the PowerShell steps carefully, it’s achievable — most of the time. Just keep an eye out for updates that might bring it back and back up your system beforehand if you’re doing a significant cleanup.

Double-check your package names, run commands as an administrator, and restart your PC if things aren’t working straight away. It can be a bit frustrating, but once it’s gone, it’s a relief. Hope this helps — it took me a fair while to figure out. Good luck out there!