Quick fix: Run wsreset.exe from Run dialog. Or sign out of Microsoft Store and sign back in. If button still greyed out: open PowerShell (Admin) and run Get-AppxPackage -AllUsers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}. Reboot. Microsoft Store now offers Install button normally.
After certain operations (license reset, account switch, region change), Microsoft Store may grey out the Install button. Cause: cached state mismatch, license verification pending, or specific app temporarily flagged. Reset clears the state.
Affects: Windows 11 (and Windows 10).
Fix time: ~10 minutes.
What causes this
Microsoft Store caches license state per-app. After license reset (slmgr /rilc), changes account, or region change, Store may not refresh cache:
- Cache stale; shows wrong state.
- Pending re-verification with Microsoft servers.
- Specific app license not yet re-confirmed.
- Sign-in pending refresh.
Method 1: Reset Microsoft Store cache
The standard route.
- Close Microsoft Store completely.
- Open Run (Win+R). Type
wsreset.exe. Press Enter. - Black Command Prompt window opens. Wait 30 seconds. Microsoft Store reopens.
- Try app page. Install button should be back.
- If still greyed: continue to Method 2.
- For specific app cache: Settings → Apps → Installed apps → find the app → Advanced options → Reset. This clears the app’s local data.
- For licenses specifically:
slmgr /rilcin Admin Command Prompt to refresh.
This is the standard fix.
Method 2: Sign out and back in to Microsoft Store
For account sync issues.
- Open Microsoft Store.
- Click your profile icon (top right).
- Click Sign out.
- Close Microsoft Store completely.
- Open again. Click profile icon → Sign in. Enter Microsoft account.
- If using Windows Hello: authenticate.
- Microsoft Store now refreshes license state with current account.
- For multiple Microsoft accounts: ensure correct one signed in. Settings → Accounts → Other accounts. Switch.
- For corporate Microsoft accounts: ensure work account access. May need IT to enable.
This is the account refresh.
Method 3: Re-register Microsoft Store and dependencies
For deeper repair.
- Open PowerShell as Admin.
- Re-register Store:
Get-AppxPackage -AllUsers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"} - Re-register dependencies:
Get-AppxPackage -AllUsers *VCLibs* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"} Get-AppxPackage -AllUsers *WindowsRuntime* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"} - Restart Windows Store Install Service:
net stop wsservice net start wsservice - Reboot PC.
- Test app install. Install button should work.
- For specific Store-related error codes: search the code at support.microsoft.com for targeted fix.
- For chronic Store failures: run Windows Update troubleshooter (Settings → System → Troubleshoot → Other troubleshooters → Windows Store Apps).
This is the deeper fix.
How to verify the fix worked
- Microsoft Store: Install button is active (clickable, not greyed out).
- Clicking starts download.
- App installs successfully.
- Settings → Apps shows the app after install.
If none of these work
If still greyed: Check region: Microsoft Store account region must match Windows region. For paid apps: payment method may be missing. Ensure: visit account.microsoft.com → Payment & billing → verify payment. For region-locked apps: app not available in your region; greyed out is normal. For age-restricted apps: if Family Safety restricts, parent must approve. For corporate-managed PCs: Intune may restrict specific app installations. Contact IT. For Windows Store version: old version may have bugs. Check Settings → Apps → Microsoft Store → Update (if available). For chronic licensing issues: re-link Microsoft account at account.microsoft.com/devices. For specific app issue: developer pulled or temporarily withdrew. Wait, try later.
Bottom line: wsreset.exe + sign out/in to Microsoft Store. If still greyed: re-register Store via PowerShell + restart Windows Store Install Service. Reboot.