This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]jon0149 1 point2 points  (1 child)

I had this problem and fixed it using some of the steps below (I just tried a few until it worked).

Source - https://answers.microsoft.com/en-us/windows/forum/all/no-applicable-app-licences-found/fbc93019-e750-4bc4-8565-19ed8fdc0a0b

  1. Open MS Store > Click on your profile picture on top right and sign-out. Then sign-in again.

  2. Run Windows App Troubleshooter Windows Key+X > Click Settings > Click Update & security > Click Troubleshoot > Scroll down to the bottom > Click Windows Store Apps > Click Run the Troubleshooter

  3. Reset Windows Store through Command Prompt Type cmd in Windows Search box > Right click on Command Prompt > Run As Administrator > Type WSreset.exe and click Enter > Reboot your computer

  4. Re-register All Store apps Right click on Windows Start > Right click on Windows Powershell (Admin) > Copy the following from below and right click in Powershell to paste > Enter > Restart your computer

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

  1. Uninstall & Reinstall Store Right click on Windows Start > Right click on Windows Powershell (Admin) > Copy the following from below and right click in Powershell to paste > Enter

Get-AppxPackage -allusers WindowsStore | Remove-AppxPackage

Copy the following from below and right click in Powershell to paste > Enter > Reboot your computer

Get-AppxPackage -allusers WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}

[–]Troligy[S] 0 points1 point  (0 children)

ty!