Fix Win32 Apps Installed via Store Missing From Add or Remove Programs
🔍 WiseChecker

Fix Win32 Apps Installed via Store Missing From Add or Remove Programs

When you install a Win32 application from the Microsoft Store, you expect it to appear in Settings > Apps > Installed apps or in the classic Control Panel Add or Remove Programs list. Many business users report that after installation, the app simply does not show up in either location. This prevents you from uninstalling, modifying, or repairing the application through the standard Windows interface.

The root cause is a registry or system file mismatch that prevents the Windows Package Manager from registering the installed application in the Uninstall key. This often occurs after a Windows update, a failed Store app sync, or a corruption in the AppX deployment pipeline. The app remains functional on your system, but Windows no longer knows how to manage it.

This article explains why Win32 Store apps go missing from Add or Remove Programs and provides a reliable, step-by-step fix to restore the entry. You will also learn how to prevent this issue from recurring and what to do if the standard fix does not work.

Key Takeaways: Restore Missing Win32 Store Apps to the Installed Apps List

  • Windows PowerShell Get-AppxPackage command: Lists all installed Store apps and their PackageFullName to identify the missing Win32 app.
  • Add-AppxPackage -Register command: Re-registers the app package with Windows to rebuild the Uninstall entry in the registry.
  • Settings > Apps > Installed apps filter: Use the filter to verify whether the app reappears after the registration step.

ADVERTISEMENT

Why Win32 Store Apps Disappear from Add or Remove Programs

Win32 applications installed through the Microsoft Store use a hybrid deployment model. The Store downloads the app as an MSIX or AppX package, but the actual executable components behave like traditional Win32 programs. Windows must record the installation in two locations: the Windows Registry under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall and the Windows Package Manager database. If either location becomes corrupted or out of sync, the Installed apps list no longer shows the application.

The most common trigger is a failed Windows Update that modifies the Package Manager database without updating the Uninstall registry key. A second scenario involves Store app license validation errors that cause Windows to treat the app as not properly installed. In both cases, the app binary remains on your drive and continues to run, but Windows cannot manage it through the standard interface.

The Registry Key That Controls Visibility

Windows 11 reads the Installed apps list from the Uninstall registry key. Each installed application must have a subkey under this path. Win32 Store apps create a subkey with a name that matches their PackageFullName. When that subkey is missing or contains incorrect data, the app does not appear. The re-registration process restores this subkey with the correct values.

Package Manager Database Corruption

The Windows Package Manager maintains a separate database of all installed packages. This database is stored in a system-protected location. If a Windows Update or a third-party cleanup tool removes the entry for a Win32 Store app, the Installed apps list loses the reference even though the app files remain. Re-registering the package forces Windows to rebuild the database entry.

Steps to Re-register the Missing Win32 Store App

Follow these steps to restore the missing app entry. You need administrative access to the Windows 11 device.

  1. Open Windows PowerShell as Administrator
    Right-click the Start button or press Windows + X. Select Windows PowerShell (Admin) or Terminal (Admin). Click Yes on the User Account Control prompt.
  2. List all installed Store apps
    In the PowerShell window, type the following command and press Enter:

    Get-AppxPackage | Select-Object Name, PackageFullName

    This command displays every Store app installed on your system. Scan the list for the name of the missing Win32 application. Write down the exact PackageFullName for that app. The name looks like PublisherName.AppName_version_architecture_…neutral.

  3. Re-register the app package
    Type the following command, replacing PackageFullName with the full name you noted in step 2:

    Add-AppxPackage -Register "$env:ProgramFiles\WindowsApps\PackageFullName\AppxManifest.xml" -DisableDevelopmentMode

    Press Enter. The command runs silently and takes a few seconds. If you receive an access denied error, verify that you are running PowerShell as Administrator and that the app is not running in the background.

  4. Verify the app appears in Installed apps
    Open Settings > Apps > Installed apps. Use the search box or scroll to find the previously missing app. If the app appears, you can now uninstall, modify, or repair it through the standard interface.

Alternative Method: Use the Microsoft Store Repair Command

If the PowerShell method does not work, use the built-in Store repair tool. Open Settings > Apps > Installed apps. Locate the entry for Microsoft Store itself. Click the three-dot menu next to it and select Advanced options. Scroll down and click Repair. After the repair completes, restart your PC and check Installed apps again. This process resets the Store’s internal database, which often resolves sync issues.

ADVERTISEMENT

If the Win32 App Still Does Not Appear

The PowerShell command returns an error about access to the WindowsApps folder

The WindowsApps folder is protected by the TrustedInstaller account. If you receive an access denied error, you need to take ownership of the specific app folder. Open File Explorer and navigate to C:\Program Files\WindowsApps. If you cannot see it, enable View > Show > Hidden items. Right-click the folder for the missing app, select Properties, go to the Security tab, click Advanced, and change the owner to Administrators. Apply the change, grant full control to Administrators, and then run the PowerShell re-registration command again. After the app appears, restore the original permissions by resetting the owner to TrustedInstaller.

The app was installed by a different user account

Win32 Store apps installed under one user account do not automatically appear for other users. Sign in with the original account that installed the app. If you need the app to appear for all users on the device, uninstall it and reinstall it from the Store while signed in with the account that has the license. For business environments, use Group Policy > Computer Configuration > Administrative Templates > Windows Components > App Package Deployment to enable deployment for all users.

The app entry reappears but the app itself crashes or does not launch

This indicates a corrupted app installation rather than a missing registry entry. Uninstall the app through Settings > Apps > Installed apps now that it is visible. Then reinstall it from the Microsoft Store. If the app fails to uninstall, use the Remove-AppxPackage PowerShell command with the PackageFullName you identified earlier. After removal, restart the device and install the app fresh.

Item PowerShell Re-registration Store Repair Tool
Description Manually re-registers the app package using AppxManifest.xml Resets the internal Microsoft Store database
When to use App missing from list but still installed and functional Multiple Store apps missing or Store itself is broken
Requires admin rights Yes No
Effect on other apps Only affects the targeted app May reset settings for all Store apps
Success rate High when PackageFullName is correct Moderate; depends on underlying corruption

Now you can restore missing Win32 Store apps to the Installed apps list using the PowerShell re-registration command or the Store repair tool. If the problem persists, check the app’s folder permissions and verify that you are signed in with the correct user account. For future installations, consider using the winget command-line tool, which registers Win32 apps in the Uninstall key more reliably than the Store interface.

ADVERTISEMENT