Skip to content

Instantly share code, notes, and snippets.

@selfish
Last active December 20, 2017 13:56
Show Gist options
  • Select an option

  • Save selfish/1b979ac7063f0f3568579a3c692c7057 to your computer and use it in GitHub Desktop.

Select an option

Save selfish/1b979ac7063f0f3568579a3c692c7057 to your computer and use it in GitHub Desktop.
Add and Remove windows store apps from Powershell/CMD
# 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