Last active
September 11, 2019 08:52
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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