Last active
December 20, 2017 13:56
-
-
Save selfish/1b979ac7063f0f3568579a3c692c7057 to your computer and use it in GitHub Desktop.
Add and Remove windows store apps from Powershell/CMD
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
| # To hide the console, see: | |
| # https://gist.github.com/NitaiPerez/6d665465e0a6e7b63b21ce7e57fbf0cc | |
| # Sideload windows store app using .appxbundle file: | |
| # Enable sideload apps in settings (). | |
| Add-AppxPackage <app name>.appxbundle | |
| #Remove package: | |
| Remove-AppxPackage -package <package name> | |
| #List installed packages: | |
| Get-AppxPackage <package name> | |
| Get-AppxPackage *<part of name>* | |
| # Remove by partial name (with piping): | |
| Get-AppxPackage <package name> | Remove-AppxPackage | |
| Get-AppxPackage *<part of name>* | Remove-AppxPackage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment