Fix Microsoft Store Cache Refusing wsreset on a Specific Build
🔍 WiseChecker

Fix Microsoft Store Cache Refusing wsreset on a Specific Build

Quick fix: On certain Windows 11 builds (24H2 early releases), wsreset.exe reports success but doesn’t actually clear the Store cache. Manually delete %LocalAppData%\Packages\Microsoft.WindowsStore_8wekyb3d8bbwe\LocalCache contents while Store is closed, then sign back into Store fresh.

You ran wsreset.exe to fix a Store issue. The black console window appeared, then closed; Store opened automatically. But the same error returns immediately — the cache wasn’t actually cleared despite wsreset claiming success. The reset command has a known glitch on some 24H2 builds.

Symptom: wsreset.exe runs without error but doesn’t clear the Microsoft Store cache.
Affects: Windows 11 24H2 early builds.
Fix time: 5 minutes.

ADVERTISEMENT

Why wsreset doesn’t work in some builds

wsreset.exe writes to the Store’s package-local app data. A bug in some builds wrote to the wrong location, leaving the actual cache untouched. The console exits with success, but nothing was cleared.

Method 1: Manual cache deletion

  1. Close Microsoft Store completely (Task Manager → End task).
  2. Press Win+R, type %LocalAppData%\Packages\Microsoft.WindowsStore_8wekyb3d8bbwe\LocalCache, press Enter.
  3. Delete all contents of this folder.
  4. Open Microsoft Store fresh.

ADVERTISEMENT

Method 2: Full reset via Settings

  1. Settings → Apps → Installed apps → Microsoft Store → Advanced options → Reset.
  2. Click Reset. Wait for the confirmation checkmark.
  3. Reopen Store.

Method 3: Re-register Store via PowerShell

  1. Elevated PowerShell:

    Get-AppxPackage *WindowsStore* | Reset-AppxPackage
  2. Sign out and back in.

Verification

  • Store opens to clean home page.
  • The previous error no longer appears.
  • Sign in works; apps install.

If none of these work

If Store remains broken, update to the latest Windows build — the wsreset bug is fixed in current 24H2 cumulative updates. As a last resort, use winget instead of the GUI Store for package management.

Bottom line: wsreset has a build-specific bug. Manual delete of LocalCache or Reset via Settings is the workaround until the wsreset code is corrected.

ADVERTISEMENT