Home
Fix Microsoft Store Not Opening or Loading on Windows 10
Windows 10 users frequently encounter issues where the Microsoft Store refuses to launch, gets stuck on a loading splash screen, or crashes immediately upon opening. These problems are often linked to corrupted local caches, incorrect system configurations, or interrupted background updates. Resolving these issues requires a systematic approach, moving from basic system refreshes to more advanced component re-registrations.
Primary Quick Fixes for Immediate Results
Before diving into complex system modifications, specific low-effort actions often resolve temporary software glitches. In technical support environments, these "quick wins" account for a significant portion of successful repairs.
Synchronize System Date and Time Settings
The Microsoft Store relies heavily on secure certificates to validate the connection between a local PC and Microsoft’s servers. If the system clock is even a few minutes out of sync, the SSL handshake may fail, causing the Store to remain blank or display a connection error.
To ensure time synchronization:
- Locate the date and time display on the taskbar.
- Right-click and select Adjust date/time.
- Toggle the switch for Set time automatically to Off and then back to On.
- Click the Sync now button under the Synchronize your clock section.
- Verify that the Time zone matches the current physical location.
Execute the wsreset Command
The Microsoft Store maintains a local cache of application metadata and login sessions. Over time, this cache can become fragmented or corrupted. Windows includes a dedicated utility called wsreset.exe specifically designed to clear this cache without deleting installed apps or changing account settings.
In our testing, executing this command is the most effective first step for stores that hang on the logo screen.
- Press the Windows Key + R to open the Run dialog.
- Type
wsreset.exeand press Enter. - A blank black Command Prompt window will appear. It is crucial not to close this window manually.
- Wait approximately 10 to 30 seconds. The window will close automatically, and the Microsoft Store should launch with a fresh cache.
Utilizing the Windows Store Apps Troubleshooter
Microsoft integrates automated diagnostic tools within Windows 10 to identify and fix common issues with Universal Windows Platform (UWP) applications.
How to Run the Automated Diagnostic
The troubleshooter scans for missing security certificates, incorrect temporary folder permissions, and service registration issues.
- Open the Start menu and select Settings (the gear icon).
- Navigate to Update & Security and click on the Troubleshoot tab in the left sidebar.
- Select Additional troubleshooters.
- Scroll to the bottom to find Windows Store Apps.
- Click Run the troubleshooter and follow any specific prompts, such as "Enable User Account Control" or "Reset apps."
Repairing and Resetting the Microsoft Store Application
When the cache reset fails, the application package itself may need a deeper refresh. Windows 10 provides two levels of intervention: Repair and Reset.
Difference Between Repair and Reset
Understanding which option to choose can save time and prevent data loss.
- Repair: This attempts to fix the app's files without affecting the app's data or your login information. It is the safer first choice.
- Reset: This deletes the app's data entirely, including preferences and sign-in details. Use this if Repair does not work.
Steps to Reset the App Package
- Navigate to Settings > Apps > Apps & features.
- Use the search bar or scroll down to find Microsoft Store.
- Click on Microsoft Store and select Advanced options.
- Scroll down to the Reset section.
- Click Repair. Test the Store.
- If the issue persists, return and click Reset.
Advanced Network Configuration and Connectivity Fixes
The Microsoft Store is an online-dependent platform. If there are disruptions in the network stack or if third-party software intercepts the traffic, the Store will fail to load content.
Clearing the DNS Cache
A stale Domain Name System (DNS) cache can lead to "Server not found" errors within the Store.
- Right-click the Start button and select Command Prompt (Admin) or Windows PowerShell (Admin).
- Type
ipconfig /flushdnsand press Enter. - This forces the system to request fresh IP addresses for Microsoft’s update and delivery servers.
Disabling Proxy Servers and VPNs
Microsoft Store traffic is often sensitive to routing changes. Many VPNs or manual proxy configurations interfere with the Store’s regional verification.
- Press Windows Key + I to open Settings.
- Go to Network & Internet > Proxy.
- Under Manual proxy setup, ensure Use a proxy server is toggled Off.
- Temporarily disable any active VPN software to check if the Store resumes functionality.
Configuring Public DNS for Compatibility
In some cases, ISP-provided DNS servers fail to resolve Microsoft's content delivery network (CDN) correctly. Switching to a stable public DNS like Google DNS or Cloudflare can bypass these local routing issues.
- Go to Control Panel > Network and Sharing Center > Change adapter settings.
- Right-click your active connection and select Properties.
- Select Internet Protocol Version 4 (TCP/IPv4) and click Properties.
- Select Use the following DNS server addresses.
- Enter
8.8.8.8(Preferred) and8.8.4.4(Alternate). - Click OK and restart the Store.
Re-registering Microsoft Store via PowerShell
If the Store remains unresponsive or is missing from the Start menu entirely, the underlying package registration in the Windows Appx database may be corrupted. This is an advanced fix that "re-installs" the Store using system-level scripts.
The Universal Re-registration Command
This process requires administrative privileges. It scans the system for the Store's installation files and registers them back into the Windows kernel.
- Right-click the Start menu and choose Windows PowerShell (Admin).
- Copy and paste the following command:
Get-AppXPackage -AllUsers -Name Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} - Press Enter and ignore any red error text that may briefly appear, provided the progress bar finishes.
- Restart the computer after the process completes.
Repairing System File Integrity
The Microsoft Store depends on shared system files (DLLs) and services (like the Background Intelligent Transfer Service). If general Windows system files are damaged due to a failed update or disk error, the Store will be among the first apps to fail.
Running SFC and DISM Tools
These two tools work in tandem. SFC (System File Checker) checks for corrupted local files, while DISM (Deployment Image Servicing and Management) repairs the Windows image using files downloaded from Microsoft's servers.
- Open PowerShell (Admin).
- Execute the DISM command first:
dism /online /cleanup-image /restorehealth(Note: This may take several minutes to reach 100%). - Once finished, execute the SFC command:
sfc /scannow - If SFC reports that it "found corrupt files and successfully repaired them," restart the PC and attempt to open the Store.
Handling Microsoft Store Error Codes
Users often encounter specific alphanumeric error codes when the Store fails. Understanding these can narrow down the cause.
Error 0x80072f8f (Security Error)
This usually indicates a TLS or SSL certificate issue. It is almost always solved by syncing the Date & Time or ensuring that "TLS 1.2" is enabled in Internet Options.
Error 0x8004e108 (Account Sync)
This occurs when the Microsoft account linked to the Store is having sync issues. Logging out of the Store, restarting, and logging back in is the standard resolution.
Error 0x80131500 (Server Side)
While this can sometimes be a Microsoft server outage, it is frequently caused by the regional settings in Windows not matching the account's registered region. Verify Settings > Time & Language > Region to ensure accuracy.
Creating a New User Profile as a Diagnostic Step
If all software-level repairs fail, the issue might be isolated to a corrupted user profile registry hive.
How to Test with a Local Account
Creating a temporary local user can determine if the problem is system-wide or user-specific.
- Go to Settings > Accounts > Family & other users.
- Select Add someone else to this PC.
- Click I don't have this person's sign-in information and then Add a user without a Microsoft account.
- Log out of your current account and log into the new one.
- If the Microsoft Store works in the new account, your original user profile is corrupted, and you should consider migrating your files to a new profile.
Summary of Resolution Paths
Fixing the Microsoft Store on Windows 10 is rarely a one-size-fits-all process. Based on our observations, the most successful recovery path follows this hierarchy:
- Clear the cache via
wsreset.exeand sync the time. - Use the "Reset" feature in Apps & Features.
- Run PowerShell re-registration scripts.
- Perform SFC and DISM system repairs.
Most Store issues are the result of background processes being interrupted or local cache files becoming unreadable. By following these structured steps, users can restore access to their digital library and essential Windows updates without needing a full operating system reinstallation.
Frequently Asked Questions
Why does the Microsoft Store close immediately after I open it?
This "crash on launch" behavior is typically caused by a corrupted local cache or a conflict with a third-party antivirus. Try running wsreset.exe first. If that fails, the PowerShell re-registration command usually restores the app's stability.
Can I uninstall and reinstall the Microsoft Store?
The Store is a protected system component in Windows 10, so it cannot be uninstalled via the Control Panel. However, you can effectively "reinstall" it using the PowerShell command Add-AppxPackage which re-registers the existing files into the system.
Does Windows 10 version affect the Store's functionality?
Yes. Older versions of Windows 10 (such as version 1507 or 1607) may no longer be supported by the current Store infrastructure. Ensure your system is updated to at least version 22H2 to maintain compatibility with modern apps.
Will resetting the Microsoft Store delete my installed games?
No. Using the "Reset" option in Settings > Apps & Features only clears the Store's internal database, preferences, and login credentials. Your installed games and apps remain on your hard drive, though you may need to sign back into your Microsoft account to update them.
What should I do if the Store says "Check your connection"?
First, verify that your internet is active. If other websites work, the issue is likely with your DNS settings or a proxy. Try flushing your DNS cache or switching to Google DNS (8.8.8.8) to resolve the handshake issues.
-
Topic: [Article] Troubleshoot Microsoft Store on a Windows 10/11 Machines - Microsoft Q& Ahttps://learn.microsoft.com/en-us/answers/questions/4377281/(article)-troubleshoot-microsoft-store-on-a-window
-
Topic: Windows Store app won't work and won't stop running - Microsoft Q& Ahttps://learn.microsoft.com/en-us/answers/questions/5830720/windows-store-app-wont-work-and-wont-stop-running
-
Topic: Microsoft Store doesn't open - Microsoft Supporthttps://support.microsoft.com/en-us/account-billing/microsoft-store-doesn-t-open-126a875d-8b72-def1-0af6-d325276a058b#:~:text=If