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
 

[ sourced from The Verge ]

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 2 points 2 years ago (1 children)

How do you force uninstall even the ones you can't officially uninstall?

[โ€“] [email protected] 4 points 2 years ago* (last edited 2 years ago)

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.