Quick fix: Open Settings → Apps → Installed apps, find Xbox, click ⋯ → Advanced options → Repair. 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.
Affects: Windows 11 (and Windows 10) with Xbox app installed.
Fix time: ~10 minutes.
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.
- Open Settings → Apps → Installed apps.
- Find Xbox. Click the three dots → Advanced options.
- Scroll to the Reset section.
- Click Repair. Windows re-validates the app’s files and re-creates any missing.
- The button shows a checkmark when complete (about 30 seconds).
- Launch Xbox. Sign in if prompted.
- If still broken, proceed to Method 2.
Repair is non-destructive: sign-in state, library, settings all preserved.
Method 2: Reset the Xbox app (clears data)
Use when Repair doesn’t resolve.
- Same Settings → Apps → Installed apps → Xbox → Advanced options.
- Scroll to Reset section.
- Click Reset. Confirm.
- The app data is wiped. You’ll need to sign in again, configure preferences again.
- Launch Xbox. Sign in. Library re-populates from your Microsoft account.
- 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.
- Open Terminal (Admin).
- 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"} - Also re-register Gaming Services (the underlying dependency):
Get-AppxPackage *gamingservices* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"} - Reboot.
- Launch Xbox. The full AppX stack is restored.
- 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.