Win10删除WindowsApps文件夹后应用商店闪退怎么办

如题所述

1、在搜索菜单中输入PowerShell,并在搜索结果上点击鼠标右键,选择以管理员方式运行;

2、对于应用商店APP问题

在Windows PowerShell(管理员)下执行命令:

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”},并回车运行;

注意:运行的时候需要退出所有操作,否则会报错程序被占用。

3、对于应用商店问题

在Windows PowerShell(管理员)下执行命令:

$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest

温馨提示:答案为网友推荐,仅供参考
第1个回答  2019-10-23
下载位置C:\Windows\SoftwareDistribution\Download安装位置C:\Program
Files\WindowsApps(需要把隐藏文件点开)注:安装完成系统会自动清理安装文件
相似回答