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.
Affects: Windows 11 (and Windows 10) Microsoft Store.
Fix time: ~10 minutes.
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.
- Press
Win + R, typewsreset.exe, Enter. Cache clears. Store auto-launches after. - If still errors: click profile icon top-right → Sign out. Close Store. Reopen.
- Sign in fresh with MSA.
- Try the action that errored. Should succeed.
- Verify system clock: Settings → Time & language → Date & time. Set time automatically on. Sync now.
- If clock is 10+ minutes off: SSL certificates fail validation, Store errors. Fixing clock often resolves.
Quick fixes that resolve most cases.
Method 2: Reset Store package
For corruption.
- Open Terminal (Admin).
- Reset Store package:
Get-AppxPackage Microsoft.WindowsStore | Reset-AppxPackage - If Reset-AppxPackage isn’t available:
Get-AppxPackage Microsoft.WindowsStore | Foreach { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" }Re-registers Store from disk.
- Reboot. Open Store. Sign in.
- 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.
- Open Terminal:
Test-NetConnection -ComputerName store.windows.com -Port 443. Should succeed. - Test login:
Test-NetConnection -ComputerName login.live.com -Port 443. - If either fails: network blocking. Check firewall, proxy, VPN.
- 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.
- For corporate networks: contact IT. Some networks block consumer Microsoft Store; only allow Microsoft Store for Business.
- For DNS issues: switch DNS to Cloudflare (1.1.1.1) or Google (8.8.8.8) temporarily. See if Store works.
- 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.