How to Uninstall a Stubborn Microsoft Store App via PowerShell
Quick fix: Open PowerShell as Admin. Run: Get-AppxPackage *AppName* | Remove-AppxPackage. Replace *AppName* with the app’s package family name. For all users: add -AllUsers. For built-in apps that can’t uninstall via Settings: Get-AppxPackage -AllUsers *AppName* | Remove-AppxPackage -AllUsers. Some Microsoft Store apps refuse to uninstall via Settings → Apps. Common stubborn cases: corrupted apps, system-tied … Read more