this post was submitted on 17 Aug 2023
11 points (100.0% liked)
TechNews
4392 readers
1 users here now
Aggregated tech news.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
How do you force uninstall even the ones you can't officially uninstall?
Powershell
Get-AppxPackage -all NAME_OF_THE_APPX | Remove-AppxPackage -AllUsers
Remove any remnants files by taking ownership of the system folder app is in (it is trusted installer by default) and then you can delete those. With something like edge or cortana it can be bit more difficult, so you gonna have to google for those. Cortana is pretty similar, but it's appx package name is something other than Cortana, but luckily that will be easier in the future.