最近用到了windows store 但是选择一个应用后提示
“需要新应用打开此ms-windows-store”
其实只需要一个命令行就可解决。
打开powershell 管理员运行,输入
Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
ok,可以正常使用商店了
本文转自 烟台小崔 51CTO博客,原文链接:http://blog.51cto.com/seawind/1847092