Some Microsoft Store installed apps doesn't show within Microsoft Store's Library

! ! 0 Reputation points
2025-05-04T04:28:20.27+00:00

Hi,

Some apps (not all) which I install using Microsoft Store, e.g. Viber:

2025-05-04 06_15_44-Microsoft Store

Do not show up within Microsoft Store's Library:

2025-05-04 06_16_22-Microsoft Store

Strange thing I noticed, that the main screen 'status' in this case not indicating the Installed state (only if open the app information panel like in the first image):

2025-05-04 06_15_35-Microsoft Store

While .e.g in case of Whatsup the 'status' indicates Installed, and properly shows up in the Library section.

May I ask if this is normal behavior not not show in Library section for some app (like Viber) installed through Microsoft Store, or indeed it should show as well? If it should is there any PowerShell cmd to force Microsoft Store to re-scan all installed app or something similar ?

I already tried to reset and remove/re-add Microsoft Store app, and it did not made any difference.

Many thanks for your time and help in advance!

Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
11,505 questions
{count} votes

2 answers

Sort by: Most helpful
  1. S.Sengupta 23,256 Reputation points MVP
    2025-05-05T00:48:44.06+00:00

    This issue can happen if certain apps installed from the Microsoft Store are not properly linked or recognized by the Store's Library.

    Press Win + R, type wsreset.exe, and press Enter.

    This will reset the Store cache and could fix the issue.

    Open PowerShell as an administrator

    Run the following command:

    Get-AppxPackage WindowsStore | Reset-AppxPackage

    Open Settings > Update & Security > Troubleshoot > Additional troubleshooters.

    Run the Windows Store Apps Troubleshooter.


  2. Smith Pham 75 Reputation points
    2025-05-07T08:01:48.8466667+00:00

    The issue happened due to the same issue with appx

    1. Re-register the Microsoft Store:

    This is more powerful than just resetting it via Settings.

    Copy

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

    ✅ 2. Force update app list with this command:

    You can also update all apps and try syncing licenses:

    Copy

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

    ✅ 3. Sync Licenses using StoreCLI (if available):

    Copy

    start ms-windows-store://pdp/?productid=9WZDNCRFJBMP
    

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.