You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 3, 2025. It is now read-only.
To test, I run Get-AppxPackage -name "Microsoft.ZuneVideo" | Remove-AppxPackage -AllUsers, the folder C:\Program Files\WindowsApps\Microsoft.ZuneVideo_10.24101.10041.0_x64__8wekyb3d8bbwe and its files still exist.
The real way to delete an app from the disk is to use dism:
Description
https://github.com/LeDragoX/Win-Debloat-Tools/blob/main/src/lib/debloat-helper/Remove-UWPApp.psm1 essentially calls Remove-AppxPackage to delete an app. Unfortunately,
Remove-AppxPackageonly hides the app. It doesn't delete any file from your disk.To test, I run
Get-AppxPackage -name "Microsoft.ZuneVideo" | Remove-AppxPackage -AllUsers, the folderC:\Program Files\WindowsApps\Microsoft.ZuneVideo_10.24101.10041.0_x64__8wekyb3d8bbweand its files still exist.The real way to delete an app from the disk is to use dism:
See https://www.tenforums.com/software-apps/14445-uninstall-bloatware-windows-10-came-post328477.html#post328477
Reason
NA
Examples
No response