Fix Microsoft Store Server Stumbled Error on Windows 11
🔍 WiseChecker

Fix Microsoft Store Server Stumbled Error on Windows 11

Quick fix: “The server stumbled” error 0x80131500 means Store can’t reach Microsoft’s servers. Run wsreset.exe to clear cache. Then sign out of Store (profile icon → Sign out) and back in. Verify date/time is correct (Settings → Time & language). For persistent errors: Get-AppxPackage Microsoft.WindowsStore | Reset-AppxPackage via Terminal (Admin).

You open Microsoft Store. Get error “The server stumbled. We all have those days. Try again in a little while.” Error code 0x80131500. Cause is one of: network issue, sign-in token expired, Store cache corruption, system clock wrong.

Symptom: Microsoft Store shows “The server stumbled” error (0x80131500) consistently.
Affects: Windows 11 (and Windows 10) Microsoft Store.
Fix time: ~10 minutes.

ADVERTISEMENT

What causes this

0x80131500 generally means “something failed during server communication.” Specific causes: cached MSA token expired, system clock too far off (causes SSL cert validation failure), Store package corrupted, network blocking Store endpoints.

Method 1: Clear Store cache and re-sign-in

The first try.

  1. Press Win + R, type wsreset.exe, Enter. Cache clears. Store auto-launches after.
  2. If still errors: click profile icon top-right → Sign out. Close Store. Reopen.
  3. Sign in fresh with MSA.
  4. Try the action that errored. Should succeed.
  5. Verify system clock: Settings → Time & language → Date & time. Set time automatically on. Sync now.
  6. If clock is 10+ minutes off: SSL certificates fail validation, Store errors. Fixing clock often resolves.

Quick fixes that resolve most cases.

ADVERTISEMENT

Method 2: Reset Store package

For corruption.

  1. Open Terminal (Admin).
  2. Reset Store package:
    Get-AppxPackage Microsoft.WindowsStore | Reset-AppxPackage
  3. If Reset-AppxPackage isn’t available:
    Get-AppxPackage Microsoft.WindowsStore | Foreach { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" }

    Re-registers Store from disk.

  4. Reboot. Open Store. Sign in.
  5. For deeper repair: Settings → Apps → Installed apps → Microsoft Store → Advanced options → Reset.

This handles package issues.

Method 3: Check network and Microsoft endpoints

For connectivity issues.

  1. Open Terminal: Test-NetConnection -ComputerName store.windows.com -Port 443. Should succeed.
  2. Test login: Test-NetConnection -ComputerName login.live.com -Port 443.
  3. If either fails: network blocking. Check firewall, proxy, VPN.
  4. For VPN-related issues: disconnect VPN temporarily. Try Store. If works without VPN, VPN routing blocks Microsoft endpoints. Configure VPN split-tunneling to exclude Microsoft.
  5. For corporate networks: contact IT. Some networks block consumer Microsoft Store; only allow Microsoft Store for Business.
  6. For DNS issues: switch DNS to Cloudflare (1.1.1.1) or Google (8.8.8.8) temporarily. See if Store works.
  7. For PCs with strict third-party AV firewall: temporarily disable AV firewall. Test Store. If works: AV is blocking; add Microsoft Store endpoints to AV exclusion.

This is the right path for network-side issues.

How to verify the fix worked

  • Open Microsoft Store. No “server stumbled” error.
  • Search for an app. Results appear.
  • Install or update an app successfully.

If none of these work

If error persists: Microsoft outage: rare, but check support.microsoft.com/status or downdetector.com for Microsoft Store outage. Region/account mismatch: ensure Settings → Time & language → Region matches MSA billing country. For PCs that worked before: check recent Windows Update. If a cumulative update broke Store: uninstall via Settings → Update history → Uninstall updates. Reset network stack: netsh int ip reset + netsh winsock reset + reboot. Sometimes corrupted network stack causes Store issues. Last resort: in-place upgrade Windows via setup.exe from Windows 11 ISO. Refreshes Store and related components.

Bottom line: wsreset.exe to clear cache + sign out/in to refresh tokens. Verify date/time is correct. Reset Store package via PowerShell. Network endpoints reachable.

ADVERTISEMENT