Xbox App Won’t Open. Just Disappears Immediately! What is Microsoft Doing?!

HIKO992 15 Reputation points
2025-11-19T16:25:35.1+00:00

I’m seriously losing my patience with Microsoft right now. I cannot open the Xbox app at all. It shows the splash screen for a second and then instantly disappears. Nothing shows up in Task Manager, no error message, nothing. It just dies every single time.

I’ve already done EVERYTHING Microsoft always tells us to do:

Checked for Windows updates

Updated Microsoft Store and Xbox app

Ran the repair/reset tools

Performed a system health scan

Even tried opening it in Safe Mode

Absolutely nothing changed. The app still launches and instantly vanishes like it never existed.

How is this still an issue in 2025? Why is something as basic as the Xbox app completely broken? I’m honestly starting to feel like Microsoft doesn’t test anything anymore.

Can someone please tell me how to fix this? I’m exhausted and extremely frustrated.

Windows for home | Windows 11 | Apps

Locked Question. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

2 answers

Sort by: Newest
  1. Ian-Ng 14,150 Reputation points Microsoft External Staff Moderator
    2025-12-03T20:27:19.9266667+00:00

    Hi @HIKO992

    Welcome to Microsoft Q&A forum. 

    I completely understand your frustration regarding this issue. It is incredibly annoying when a core application like the Xbox app fails to launch, especially when you simply want to access your games and services. I can see that you have already put a significant amount of effort into troubleshooting this yourself, including updating Windows, resetting the app, and even attempting Safe Mode. 

    Based on your description, the app is launching to the splash screen and then immediately crashing or disappearing without generating an error code or a Task Manager process. Since you have already exhausted the standard troubleshooting steps and the issue persists, this indicates a deeper technical conflict or a specific bug that requires analysis beyond general Windows troubleshooting. 

    To ensure this is resolved effectively, this issue needs to be handled by the specialized Xbox Support Team. They possess deep, in-depth knowledge regarding the Xbox app architecture and have access to specific diagnostic workflows that can identify why the app is silently crashing. They are the best equipped to offer the right solution to help get this resolved for you as soon as possible. 

    You can contact them directly through the following support channel: Contact us | Xbox Support 

    Please note that as a community moderator, my limitations are to provide general guidance and information. I do not have the capability to access your device for remote troubleshooting, nor do I have the system access required to directly escalate technical tickets to the Xbox engineering team on your behalf. 

    I hope the specialized team can investigate this specific crash behavior and get your app running correctly soon. 

    Thank you for your patience and understanding throughout this process. Should you have any questions or need further assistance, feel free to reach out at any time.

    Was this answer helpful?

    0 comments No comments
  2. AI answer

    2025-11-19T16:26:06.8066667+00:00

    If the Xbox app is not opening and disappears immediately, there are several steps you can take to troubleshoot the issue further:

    1. Ensure the Xbox App is up to date: Sometimes, the app may not function correctly if it is outdated. You can check for updates in the Microsoft Store. If you are in a development sandbox, switch to RETAIL to ensure you can find the Xbox app in the Store.
    2. Reinstall the Xbox App: You can try removing the Xbox app and reinstalling it. To do this, launch PowerShell as an administrator and enter the following command to remove the app:
         get-appxpackage Microsoft.XboxApp | remove-AppxPackage -allusers
      
      Then, reinstall it by entering this command in the same PowerShell window:
         start ms-windows-store://pdp/?productid=9mv0b5hzvk9z
      
      Follow the prompts to install the app again.
    3. Check Gaming Services: Ensure that Gaming Services are up to date as well. You can check for updates similarly by removing and reinstalling it using PowerShell:
         get-appxpackage Microsoft.GamingServices | remove-AppxPackage -allusers
      
      Then reinstall it using:
         start ms-windows-store://pdp/?productid=9MWPM2CQNLHN
      
    4. Check for System Issues: Sometimes, system issues can cause apps to fail. You might want to run a system file check. Open Command Prompt as an administrator and run:
         sfc /scannow
      
      This will check for and repair any corrupted system files.
    5. Check Permissions: If you are in a managed environment, ensure that the Group Policy settings are not affecting the app's ability to launch. You can reset the Group Policy settings using the following commands in an elevated Command Prompt:
         RD /S /Q "%WinDir%\System32\GroupPolicyUsers" && RD /S /Q "%WinDir%\System32\GroupPolicy"
         gpupdate /force
      

    If none of these steps resolve the issue, it may be beneficial to reach out to Microsoft support for further assistance.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?