How To Remove Or Disable Xbox Game Bar On Windows 11 In 2026
If Xbox Game Bar keeps hijacking your screen or eating frames, your goal is simple: stop it from popping up, or remove it entirely.
The good news is that most of this is done with a couple of quick, reversible toggles, and a full uninstall is available if you want it gone for good.
Here is the plan: toggle the overlay off, kill background captures, optionally uninstall the package via PowerShell, and as a last resort edit the registry. Work through them in that order and stop once the popups quit.
At a glance: which method does what
Xbox Game Bar is the Win+G overlay that handles screen recording, screenshots, and performance widgets. People disable it because it opens by accident, clashes with game shortcuts, or runs background recording that wastes GPU and CPU.
Use this table to pick the lightest fix that solves your problem.
| Method | What it stops | Reversible? |
|---|---|---|
| Toggle off in Settings | Controller/button launches, background activity | Yes |
| Disable Captures | Background “record what happened” recording | Yes |
| PowerShell uninstall | The entire overlay and its capture feature | Yes, via Microsoft Store |
| Registry edit | GameDVR capture at a system level | Yes, if you back up first |
Decision map: toggle vs uninstall vs registry
Not every annoyance needs the nuclear option. Match your symptom to the right tool before you touch anything.
| Your situation | Best method | Risk |
|---|---|---|
| Overlay opens by accident | Settings toggle | None |
| FPS drops, micro-stutter | Disable Captures | None |
| Want it completely gone | PowerShell uninstall | Breaks Win+G capture |
| Toggles keep re-enabling | Registry edit | Needs a restore point |
Start at the top. Most users never need to go past the Captures step.
Method 1: Toggle Game Bar off in Settings
This is the fastest fix and stops the overlay from launching from a controller or assigned button.
- Press
Win+Ito open Settings. - Go to
Settings > Gaming > Game Bar. - Turn off Allow your controller to open Game Bar (older builds label this “Open Game Bar using this button”).
On Windows 11 24H2 the wording shifted, so the exact toggle text may differ slightly from earlier builds. The keyboard shortcut Win+G can still work after this, which we address below.
Method 2: Disable Captures and background recording
This is the setting that actually reclaims performance. Background recording continuously writes your screen to a buffer, burning VRAM and CPU even when you never save a clip.
- Open
Settings > Gaming > Captures. - Turn off Record what happened (the background/”historical” recording).
- Optionally turn off Record while playing a game as well.
This stops the “Starting background recording” popup and the constant encoding overhead without removing anything.
Why does Game Bar keep popping up?
It usually triggers from one of three sources: a controller button mapped to open it, the Win+G shortcut pressed by accident, or a game’s launcher invoking the overlay.
- Controller launches stop after Method 1.
- Background-recording popups stop after Method 2.
- Accidental
Win+Gpresses need the shortcut fix in Method 4.
If popups continue after all three, an app like a capture tool or game launcher is calling the overlay directly.
Method 3: Uninstall Game Bar with PowerShell
Settings has no normal Uninstall button for Game Bar, so removal goes through PowerShell. This deletes the Microsoft.XboxGamingOverlay package.
- Right-click Start, choose Terminal (Admin) or search PowerShell and pick Run as administrator.
- Run:
Get-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackage - If it errors, run it for all profiles:
Get-AppxPackage -AllUsers Microsoft.XboxGamingOverlay | Remove-AppxPackage, then reboot.
The package name is Microsoft.XboxGamingOverlay — do not confuse it with the separate Xbox app.
Can I fully uninstall Xbox Game Bar?
Yes, the PowerShell command in Method 3 removes it for your account or all users. But “fully” comes with caveats.
- In Windows 11 24H2, Game Bar is treated as a system component, so it may reappear after a feature update.
- Windows updates and cumulative patches can silently reinstall or re-register it.
- There is no supported way to block Windows from ever restoring it.
If it returns, simply re-run the uninstall command.
Method 4: Stop the Win+G shortcut from opening it
If you keep it installed but want the shortcut dead, disabling the overlay toggles is the cleanest route.
- Go to
Settings > Gaming > Game Barand turn off every available launch toggle. - Open
Settings > System > System Components, find Xbox Game Bar, click the ellipsis, choose Advanced options, and set the background permission to Never.
With background activity off and launch toggles disabled, Win+G stops producing the overlay.
Method 5: Disable GameDVR in the registry
Before editing the registry, create a System Restore point. A bad edit can destabilize Windows, and a restore point is your one-click undo.
This forces capture off at a system level, useful when Settings toggles keep flipping back on.
- Press
Win+R, typeregedit, press Enter. - Go to
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVRand set the DWORDAppCaptureEnabledto0. - Go to
HKEY_CURRENT_USER\System\GameConfigStoreand setGameDVR_Enabledto0. - Reboot to apply.
If either value is missing, create it as a new DWORD (32-bit).
Will disabling it break game recording?
Yes — and that is the honest trade-off you are choosing.
- Disabling Captures stops
Win+Gfrom recording clips and the background “instant replay” buffer. - Uninstalling the overlay removes built-in recording and screenshots entirely, and can break in-game overlays that rely on it.
- Some third-party tools that hook into Game Bar may stop working.
If you record gameplay, prefer the Captures toggle over a full uninstall so you can flip it back instantly.
How to reinstall Game Bar if you change your mind
Removal is reversible. You have two routes back.
- Open the Microsoft Store, search Xbox Game Bar, and click Install.
- Or re-register it via PowerShell:
Get-AppxPackage -AllUsers Microsoft.XboxGamingOverlay | ForEach-Object {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
After reinstalling, confirm the toggle in Settings > Gaming > Game Bar is on so Win+G works again. If you disabled GameDVR in the registry in 2026, set those DWORD values back to 1.
Quick reference
| Goal | Where | Action |
|---|---|---|
| Stop controller/button launch | Settings > Gaming > Game Bar |
Turn off launch toggle |
| Stop background recording | Settings > Gaming > Captures |
Turn off “Record what happened” |
| Uninstall overlay | PowerShell (Admin) | Get-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackage |
| Kill capture in registry | HKCU\...\GameDVR |
AppCaptureEnabled = 0 |
| Kill capture in registry | HKCU\System\GameConfigStore |
GameDVR_Enabled = 0 |
| Reinstall | Microsoft Store | Search “Xbox Game Bar”, Install |