My Xbox App on Windows keeps glitching—games won’t launch, downloads get stuck, and the app randomly signs me out. I’ve tried reinstalling, resetting the app, and checking for updates, but nothing seems to fix it. I need help figuring out what’s causing these Xbox App problems and how to get it running smoothly again.
Had a similar mess with the Xbox app on my PC. What helped me was treating it like a Windows Store problem, not only an Xbox problem. Try this order:
-
Check core services
• Open Services (Win + R, type services.msc)
• Make sure these are set to Automatic and running:- Gaming Services
- Xbox Live Auth Manager
- Xbox Live Networking Service
- Xbox Accessory Management
• If one is stuck, right click, Stop, then Start.
-
Repair Gaming Services
• PowerShell as Admin
• Run this line:
get-appxpackage Microsoft.GamingServices | remove-appxpackage -allusers
• Then in Microsoft Store, search Gaming Services and install again.
This fixed most of my “games wont launch” issues. -
Reset Microsoft Store and Xbox app
• Win + R, type: wsreset.exe
• Wait for the Store to reopen.
• Settings > Apps > Installed apps- Xbox
- Advanced options
- First hit Repair
- If still broken, hit Reset.
- Xbox
-
Check date, time, region
• Wrong time or region likes to break sign in.
• Settings > Time & language > Date & time
• Turn on “Set time automatically” and “Set time zone automatically”.
• Then open Xbox app and sign in again. -
Sign out everywhere, then sign in fresh
• In Xbox app, click your profile, sign out.
• Also sign out in Microsoft Store app.
• Reboot.
• First open Store, sign in there.
• Then open Xbox app, sign in with same account. -
Clear Xbox app token cache
• Go to:
C:\Users\YourUserName\AppData\Local\Packages
• Find folder starting with Microsoft.GamingApp
• Inside, delete the “AC” and “LocalCache” contents.
• Do not delete the folder itself.
This stopped my random sign outs. -
Check install drive and permissions
• Settings > System > Storage > Advanced storage settings > Where new content is saved
• Make sure your game install drive is online and not full.
• On that drive, right click the “WindowsApps” folder- Properties > Security
- Make sure “ALL APPLICATION PACKAGES” has Read & execute.
Corrupted permissions can freeze downloads.
-
Network reset for stuck downloads
• Settings > Network & internet > Advanced network settings > Network reset
• Reboot after that.
• Also try disabling VPN, custom DNS, and third party firewall for a test. -
Create a fresh Windows user profile test
• Settings > Accounts > Other users > Add account
• Make a test local user.
• Log in, open Store, then Xbox app, sign in.
• If it works fine there, your main profile has corrupted data.
If after all this the app still logs you out or freezes, grab the log files next:
• Press Win + R, type: xboxapp:
• Then check Event Viewer
- Applications and Services Logs > Microsoft > Windows > GamingApp
Errors there give real clues and help a lot if you post them.
Couple of extra angles you can try that are different from what @sonhadordobosque suggested:
-
Check for conflicting overlay / “helper” apps
Stuff like:- Razer Cortex / Synapse
- MSI Afterburner + RivaTuner
- Discord in-game overlay
- GeForce Experience in-game overlay
- Overwolf, SteelSeries GG, etc.
Temporarily disable all overlays, then reboot and test the Xbox app again. I’ve had games refuse to launch or close instantly because some overlay hooked into them wrong.
-
Antivirus and firewall sanity check
- If you use third party AV (Avast, AVG, Bitdefender, Kaspersky, etc), try completely disabling it for 10–15 mins, not just “gaming mode.”
- In Windows Security > Firewall & network protection > Allow an app through firewall, make sure:
- Microsoft Store
- Gaming Services
- Xbox App / Xbox Live apps
all have permission on Private networks at least.
Corrupt firewall rules can cause stuck downloads and random signouts.
-
Reliable connection test, not just “speedtest is fine”
Open Command Prompt and run:ping xboxlive.com -n 30
Look for:- Timeouts
- Huge spikes in latency
If you see many “Request timed out”, your ISP/router might be dropping packets, which can kick auth or stall downloads.
Also run: netsh int tcp show global
If “Receive Window Auto-Tuning Level” is set to something weird from an optimizer tool, reset it with:netsh int tcp set global autotuninglevel=normal
-
Strip out “tweaker” damage
If you’ve used W10/W11 debloat scripts, “privacy tools” or random registry tweak packs, some of them nuke Store / Xbox / identity stuff. You can try:- Settings > System > Troubleshoot > Other troubleshooters > Windows Store Apps > Run
- Then run in PowerShell (Admin):
sfc /scannow
Then:
DISM /Online /Cleanup-Image /RestoreHealth
Reboot after both. This fixes corrupted system components the app stack relies on.
-
Re-register core Store framework (not just Gaming Services)
Since you already reinstalled the Xbox app, go a bit deeper:
PowerShell as Admin:Get-AppxPackage Microsoft.WindowsStore | Reset-AppxPackage Get-AppxPackage Microsoft.XboxApp | Reset-AppxPackage Get-AppxPackage Microsoft.XboxGamingOverlay | Reset-AppxPackage Get-AppxPackage *XboxIdentityProvider* | Reset-AppxPackageIf
Reset-AppxPackageerrors on your build, use:Get-AppxPackage -AllUsers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register '$($_.InstallLocation)\AppxManifest.xml'}Then reboot. This is a little more aggresive than normal repair/reset.
-
Check Xbox Identity Provider specifically
A lot of “random sign outs” come from that one being broken. In Microsoft Store:- Search Xbox Identity Provider
- If it is not installed, install it.
- If installed, hit the three dots > App settings > Repair / Reset.
Then log out/in of the Xbox app again.
-
Storage driver / controller weirdness
If games won’t launch and downloads stick forever, sometimes it’s not the Xbox app at all but the disk stack.- Open Device Manager
- Expand “Storage controllers” and “IDE ATA/ATAPI controllers” or “NVMe controllers”
- Right click each controller > Update driver
- If you use vendor NVMe tools (Samsung Magician, WD Dashboard), check for firmware updates.
Also, run: chkdsk C: /scan
for your system drive, and the same for your game drive letter. Silent file system issues can make the app act drunk.
-
Telemetry / services that must not be disabled
A lot of “debloat” guides tell you to disable:- Connected User Experiences and Telemetry
- Background Tasks Infrastructure Service
- Windows Push Notifications System Service
Problem: Xbox app piggybacks some of that. If you disabled them, set them back to default: - Services > find those entries > Startup type to Automatic or Automatic (Delayed) where applicable, then restart.
-
Check for account-level issues in browser
In a browser, sign into your Microsoft account and:- Go to the “Devices” page, make sure your PC is registered.
- Make sure there are no security prompts, “verify your identity,” or locked payment methods hanging around.
- If you use a child / family account, some titles / services fail quietly. Temporarily test with a standard adult account.
-
Last resort before OS reinstall: in-place upgrade repair
If multiple Store apps act weird (not just Xbox), the OS image might be borked.
- Download the official Windows 10/11 ISO using the Media Creation Tool.
- Run
setup.exefrom inside Windows. - Choose “Keep personal files and apps.”
It reinstalls Windows core files over the top without wiping programs. I’ve seen this be the only thing that fixed a cursed Xbox app that survived every other trick.
If you test a fresh Windows user like @sonhadordobosque said and it works fine there, I’d honestly skip endless micro-fixes and either:
- Move to that new profile, or
- Do the in-place upgrade repair to clean up your main one.
Also, yeah, random signouts + stuck downloads at the same time is a big hint that something in your auth stack or network layer is unstable, not just “the Xbox app sucks” (even if it kinda does).
Couple of things I’d try in addition to what @andarilhonoturno and @sonhadordobosque already covered, and in a slightly different direction:
1. Treat it as a full Xbox / Store identity corruption
Both of them focused on services and packages, which is solid, but when you get all three:
- games not launching
- downloads stuck
- random sign outs
I start suspecting identity + license stack rather than just Gaming Services.
What to try:
- Open
Settings > Accounts > Email & accounts - Under Accounts used by other apps, remove any Microsoft accounts that you do not use for Xbox.
- Then go to
Settings > Accounts > Access work or schooland disconnect anything you do not recognize or no longer use. - Reboot.
- Open a browser, sign into your Microsoft account, and clean this up:
- Security > make sure there is no pending verification.
- Devices > remove very old PCs you no longer have.
- Then sign into Microsoft Store first, then Xbox app.
This often stabilizes sign in and license checks for game launching.
2. Check for “account scope” issues in Windows itself
If Windows was installed with a local account then later turned into a Microsoft account, the Xbox App on Windows sometimes gets confused.
Try this:
- Create a new Microsoft account user in
Settings > Accounts > Family & other users > Add account. - Log into that user, open Store, sign in with the same account you use for Xbox.
- Install only one small Game Pass title there and test.
If it works perfectly on the new profile, I do not fully agree with just “live with the new profile” as a final answer. For many people that is annoying. In that case I’d seriously consider an in-place upgrade repair (which @sonhadordobosque also mentioned toward the end) to repair the profile without forcing you to move everything.
3. Look for broken “gaming mode” / power plans
Glitches like games not launching and the app closing can come from aggressive performance tools, which the others only partially touched.
Check:
Settings > System > Power & battery > Power mode- Make sure it is not on some custom, heavily tweaked plan from OEM or a “optimizer” utility.
- In
Control Panel > Power Options, if you see weird custom plans added by brand software, temporarily switch to Balanced or High performance and retest. - Disable any so‑called “game booster” tools that hook into services or processes instead of overlays.
4. Parallel test: another store platform
This sounds weird, but trying something like the EA app or Steam can give clues:
- If EA / Steam download and launch games fine on the same drive and network, that reinforces that your Microsoft Store / Xbox stack is the culprit.
- If all clients choke (especially on the same drive or same games), it points to storage, controller or security software.
This diagnostic step helps avoid hours of poking only the Xbox app.
5. About “”
You mentioned the Xbox App on Windows, so to keep it readable: treating the Xbox App on Windows almost like a system component, not a normal app, is key.
Pros of the Xbox App on Windows (“”)
- Deep integration with Game Pass and Microsoft Store licenses.
- Shared services like Gaming Services mean once it is healthy, most Game Pass games behave consistently.
- Single sign in for cloud saves, achievements, friends and Game Bar.
Cons
- Very sensitive to any corruption in Store, identity, or networking components.
- Depends on several background services; one misconfigured service can break sign in or downloads.
- Troubleshooting is more complex than with standalone launchers because it rides on Windows features.
Competitors like what @andarilhonoturno and @sonhadordobosque suggested in their approaches focus more on core services, PowerShell re‑registration, overlays and antivirus. Those are all valid angles, but combining their steps with the account and identity cleanup above gives you a better shot at stopping the random sign outs and getting games to launch reliably.
If you go through identity cleanup, a fresh test user, power-plan sanity checks and cross‑testing with another store, you should be able to tell whether you are dealing with:
- corrupt profile / account data,
- OS store framework issues, or
- broader system / network problems.