Skip to content

Instantly share code, notes, and snippets.

@gitfvb
Last active March 12, 2022 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gitfvb/fa4eff180e5831abf3d412061a95b091 to your computer and use it in GitHub Desktop.
Save gitfvb/fa4eff180e5831abf3d412061a95b091 to your computer and use it in GitHub Desktop.
Remove unnecessary windows apps, that are not installed by the user

To show all installed apps, use this

Get-AppxPackage -AllUsers * | Out-GridView

or something like

Get-AppxPackage -AllUsers * | Select Name, PackageFullName  | ft

grafik

To uninstall some apps, use

Get-AppxPackage "*king.com*" -AllUsers | Remove-AppxPackage -AllUsers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment