started · updated
Microsoft Windows 11 app removal can leave files on disk
In Windows 11, an application may disappear from the Start menu and the installed‑apps list while its files remain in the protected WindowsApps folder. This behavior is not a bug but a result of the modern MSIX/AppX packaging format, which separates registration from actual file deletion. When a user selects “Uninstall,” Windows only deregisters the app; the final “destage” step that removes files occurs only if no other user profile or shared component still requires them.
The remaining files can be inspected with PowerShell commands such as Get‑AppxPackage (to list packages for the current user) and Get‑AppxProvisionedPackage –Online (to see packages provisioned for new profiles). To reclaim space, users may need to remove the package with Remove‑AppxPackage or delete its provisioning entry with Remove‑AppxProvisionedPackage, taking care not to affect shared frameworks used by other apps.