Skip to content

Instantly share code, notes, and snippets.

@ArthurHNL
Last active September 11, 2019 08:52
Show Gist options
  • Save ArthurHNL/a45933f8a0c18bc1922846bce36dfdd5 to your computer and use it in GitHub Desktop.
Save ArthurHNL/a45933f8a0c18bc1922846bce36dfdd5 to your computer and use it in GitHub Desktop.
PowerShell oneliner that removes all UWP apps except the Microsoft Store. I run it after every "fresh" Windows 10 installation.
Get-AppxPackage -AllUsers | Where-Object {$_.name –notlike "*store*"} | Remove-AppxPackage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment