Skip to content

Instantly share code, notes, and snippets.

@trzecieu
Last active March 13, 2017 19:20
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 trzecieu/ef0a09764254d211966abeb1ba0f167a to your computer and use it in GitHub Desktop.
Save trzecieu/ef0a09764254d211966abeb1ba0f167a to your computer and use it in GitHub Desktop.
reset_all_windows10_store_apps
# For when for some reason these apps are failing like:
# - unable to open Photos
# - Cannot type right after pressing 'Win' button
# source: https://answers.microsoft.com/en-us/windows/forum/windows_10-win_cortana/cant-type-in-windows-10-search-bar/7dce8411-8671-4d3e-90d1-b9bdc0aa4734
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment