Falls wer ähnliche Probs hat ;)
von Singler am 20.01.17 um 17:12
Antwort auf: Re:Kann es nicht installieren :( von ZeroCool

>>Musste über die Powershell alle Apps de- und dann re-installieren. War ne Sache von 5 mins ;)
>
>Auch nicht schlecht. Spass mit dem Windows Store  :)

run powershell as admin,

run this commands in powershell:

* view all packages:
Get-AppxPackage -AllUsers | Select Name, PackageFullName

* remove all packages:

Get-AppxPackage -AllUsers | Remove-AppxPackage

you will get some errors that is colored in red, just ignore that.

now we will put them all back again (including the ones that you uninstalled which is pre-installed before).

* install all packages:
Code:
Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}

< antworten >