How to Repair the Xbox App With Reset on Windows 11
🔍 WiseChecker

How to Repair the Xbox App With Reset on Windows 11

Quick fix: Open Settings → Apps → Installed apps, find Xbox, click ⋯ → Advanced optionsRepair. If still broken, click Reset (wipes Xbox user data). Both options preserve Gaming Services and installed games — they only repair the Xbox app shell.

Xbox app fails to launch, shows blank screen, can’t sign in, or displays errors loading your library. The app’s internal state is corrupted — game installations are fine, but the Xbox UI can’t access them. Repair and Reset both fix this, with Repair being non-destructive and Reset being more thorough.

Symptom: Xbox app fails to launch, shows blank library, or errors at startup.
Affects: Windows 11 (and Windows 10) with Xbox app installed.
Fix time: ~10 minutes.

ADVERTISEMENT

What causes this

The Xbox app is an AppX package that depends on Gaming Services, Xbox Live Auth Manager, and a few other companion services. When the app’s local data store gets corrupted (failed update, force-close during sign-in, antivirus quarantine of components), the app can’t initialize. Settings → Apps → Advanced options offers Repair and Reset that rebuild this state.

Method 1: Repair the Xbox app (non-destructive)

Try first. Doesn’t affect your data.

  1. Open Settings → Apps → Installed apps.
  2. Find Xbox. Click the three dots → Advanced options.
  3. Scroll to the Reset section.
  4. Click Repair. Windows re-validates the app’s files and re-creates any missing.
  5. The button shows a checkmark when complete (about 30 seconds).
  6. Launch Xbox. Sign in if prompted.
  7. If still broken, proceed to Method 2.

Repair is non-destructive: sign-in state, library, settings all preserved.

ADVERTISEMENT

Method 2: Reset the Xbox app (clears data)

Use when Repair doesn’t resolve.

  1. Same Settings → Apps → Installed apps → Xbox → Advanced options.
  2. Scroll to Reset section.
  3. Click Reset. Confirm.
  4. The app data is wiped. You’ll need to sign in again, configure preferences again.
  5. Launch Xbox. Sign in. Library re-populates from your Microsoft account.
  6. Installed games are unaffected — Reset only clears app user data, not game data.

Reset is more aggressive but reliable for app-internal corruption.

Method 3: Re-register Xbox app via PowerShell

Use when Repair and Reset both fail.

  1. Open Terminal (Admin).
  2. Re-register the Xbox app package:
    Get-AppxPackage *Microsoft.GamingApp* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
    Get-AppxPackage *Microsoft.Xbox* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
  3. Also re-register Gaming Services (the underlying dependency):
    Get-AppxPackage *gamingservices* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
  4. Reboot.
  5. Launch Xbox. The full AppX stack is restored.
  6. If the app is missing entirely (uninstalled accidentally), reinstall from Microsoft Store: open Store, search Xbox, click Install.

This addresses cases where Repair/Reset can’t reach the underlying AppX package state.

How to verify the fix worked

  • Xbox app launches without errors.
  • Library shows your owned/installed games.
  • Sign-in works; profile picture and gamerscore appear.
  • Try installing or launching a game — succeeds.

If none of these work

If Xbox app continues failing, three causes apply. Gaming Services broken: see the related article on Gaming Services refusing to install. Repair Gaming Services first, then retry Xbox app. Microsoft Store issues: if Store itself has issues, the Xbox app can’t communicate properly. Reset Store via wsreset.exe. Profile/region issues: Xbox requires region settings that match your Microsoft account. Settings → Time & language → Region should match the country your Microsoft account is registered to. For chronic Xbox app failures across all fixes, install the Xbox app fresh from Microsoft Store after fully uninstalling: Get-AppxPackage *Microsoft.GamingApp* -AllUsers | Remove-AppxPackage, reboot, install from Store.

Bottom line: Xbox app fails because of corrupted app state — Repair (non-destructive) first, then Reset (clears app data), then PowerShell re-register. Games and Gaming Services are unaffected.

ADVERTISEMENT