Skip to content

Instantly share code, notes, and snippets.

@dvdfreitag
Created January 30, 2017 16:36
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 dvdfreitag/8014eadb3178cf5c3e0632779244de09 to your computer and use it in GitHub Desktop.
Save dvdfreitag/8014eadb3178cf5c3e0632779244de09 to your computer and use it in GitHub Desktop.
Remove all Windows 10 Store apps
<# This will attempt to remove all installed packages.
# Note: This will spit out a larage number of exception messages, this is due to unremovable apps, such as Cortana.
#>
foreach ($package in Get-AppxPackage -AllUsers) { Remove-AppxPackage $package.PackageFullName }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment