- 作者:佚名
- 时间:2019-09-04
win10应用商店重置后就消失不见了怎么办?最近有win10的朋友们说重置了win10系统的应用商店,然后整个应用商店就不见了,这是什么情况呢?接下来小编给大家介绍下win10应用商店重置后不见的解决方法
win10应用商店重置后不见的解决方法:
1、在Cortana搜索框输入windows powershell,鼠标右击windows powershell以管理员运行,复制粘贴以下命令运行:
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
或者
Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppxManifest.xml” -verbose }
2、如果不行,就用下面的方法试试:
要重新安装应用商店的话,建议您在小娜中输入Powershell,以管理员身份运行。完成后,首先使用命令
Get-AppxPackage -AllUser,
在执行完成后的列表中找到 Windows Store,复制下 Install Location 中的内容。之后在 Powershell 窗口中复制并执行命令:
Add-AppxPackage -register “xxxxxx(Install location中记录的信息)\Appxmanifest.xml” -disabledevelopmentmode