Quick fix: “Acquiring license” stuck means Store can’t reach Microsoft licensing service. Run wsreset.exe in Run dialog. Then slmgr /rilc in Admin cmd. Then sign out / in to Microsoft Store. If chronic: re-register Store via PowerShell: Get-AppxPackage -AllUsers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}.
Store stuck on “Acquiring license” means Store can’t verify app entitlement. Causes: cache corruption, account sign-in issue, time/date wrong, network restriction.
Affects: Windows 11.
Fix time: ~15 minutes.
What causes this
App install flow: Store downloads package, then queries licensing service for entitlement. Stuck on licensing means:
- Cache mismatch / corruption.
- Microsoft account sign-in token expired.
- System time off (signature verification fails).
- Proxy / firewall blocking licensing endpoint.
- App developer-side licensing issue.
Method 1: Reset Store and licenses
The standard route.
- Open Run (Win+R). Type
wsreset.exe. Press Enter. - Black Cmd window opens for 30 seconds. Store reopens.
- Try install again.
- If still stuck: open Admin Command Prompt.
- Reinstall all licenses:
slmgr /rilc - Wait. Confirmation dialog.
- Sign out of Microsoft Store (Store → profile → Sign out).
- Sign back in.
- Retry app install.
- For licensing service specifically:
net stop wlidsvc & net start wlidsvc(Microsoft Account Sign-in Assistant).
This is the standard fix.
Method 2: Verify time, date, and network
For environment-level issues.
- Time: Settings → Time & language → Date & time. Set time automatically: On. Click Sync now.
- For corporate-managed time: contact IT.
- For chronic clock skew: replace CMOS battery (desktop).
- Network: test internet. Visit store.microsoft.com.
- For proxy: ensure Microsoft endpoints whitelisted: store.microsoft.com, licensing.mp.microsoft.com, aka.ms.
- VPN: try without VPN. Some VPNs block Store traffic.
- For firewall: ensure WindowsStore.exe and related allowed.
- For DNS: try public DNS (8.8.8.8, 1.1.1.1).
This is the environment check.
Method 3: Re-register Microsoft Store
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 *Microsoft.WindowsStore* | Reset-AppxPackage - Restart Microsoft Store Install Service:
net stop wsservice & net start wsservice - Reboot.
- Sign in to Store with Microsoft account.
- Retry install.
- For chronic licensing failures: SFC + DISM repair:
sfc /scannow+dism /online /cleanup-image /restorehealth.
This is the deeper route.
How to verify the fix worked
- App install proceeds past “Acquiring license.”
- App installs successfully.
- App launches.
- Store doesn’t show recurring license errors.
If none of these work
If still stuck: Account region issue: Microsoft account region must match Windows region. Update at account.microsoft.com. For specific app license: app developer’s licensing server may be down. Wait. For multiple account on PC: ensure correct account signed in. For corporate Entra ID: IT must allow store access. For licensing service errors (0x80073CF9): slmgr /rilc reinstall. For Insider builds: known licensing bugs sometimes. Last resort: in-place upgrade via Windows 11 ISO setup.exe. Repairs Store and licensing services.
Bottom line: wsreset.exe + slmgr /rilc + sign out/in. Check time accuracy. Re-register Store via PowerShell for deeper fix. Disable VPN / proxy temporarily for testing.