Win10應用商店是Win10的特色和亮點,但是應用商店也會出現不少問題。就算是已經升級了正式版Win10,但是有時候應用商店會出現閃退等問題,這個時候該怎麼辦呢?
1、點擊任務欄的搜索(Cortana小娜)圖標,輸入Powershell,在搜索結果中右鍵單擊Powershell,選擇“以管理員身份運行”。
2、執行以下命令:
① 針對Win10應用商店打不開的情況,請輸入以下命令(復制粘貼即可)回車:
$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
② 針對Win10應用打不開的情況,請輸入以下命令:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}