Forum Discussion
OliviaHarper
May 29, 2025Iron Contributor
How can I delete the apps without an uninstall button?
How to remove these app that don't have an uninstall button?
vihargadhesariya
Jun 09, 2025Iron Contributor
Settings → Apps → Installed apps → find app → “…” → Uninstall
In Admin PowerShell run:
Get-AppxPackage *ExactAppName* | Remove-AppxPackage
In Admin CMD run:
winget uninstall "App Name"
For MSI apps use Admin CMD:
msiexec /x {ProductCode}
As last resort use a portable uninstaller (e.g. Geek Uninstaller)