2021-05-12 14:32:11
Win10正式版應用商店閃退怎麼辦?
2020-07-23 10:27:54
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”}
相關文章