那么如何解決呢?下面一起來看看解決方案。
解決方法一:修復系統(tǒng)
按下 “Windows 徽標鍵+X” 快捷鍵,啟動 “Windows PowerShell (管理員)”,依次執(zhí)行以下 4 條命令:
Dism /Online /Cleanup-Image /ScanHealth
Dism /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-image /RestoreHealth
sfc /SCANNOW
執(zhí)行完畢后重啟設備,在 PowerShell 中繼續(xù)執(zhí)行下方 3 條命令:
taskkill /f /im explorer.exe
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
start explorer
執(zhí)行完畢后第 2 次重啟設備,稍等片刻,看一下開始菜單中的 “ms-resource:” 能否消失修護回原來的名稱。
解決方法二:
1. 關閉所有打開的程序,重啟電腦
2. 點擊任務欄【W(wǎng)indows】圖標,輸入【powershell】
3. 鼠標右擊【W(wǎng)indows Powershell】,選【以管理員運行】
4. 逐一拷貝(Ctrl+C)和黏貼(Ctrl+V)以下命令:
taskkill /f /im explorer.exe
Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
start explorer
5. 重新啟動win10電腦,看看是否刪除或是修復
解決方法三:修復圖標緩存
1. 請把下面代碼保存為【x.bat】,然后右鍵【以管理員身份運行】。
2. 重啟機器,看看效果
rem 關閉explorer.exe taskkill /f /im explorer.exe attrib -h -i %userprofile%\AppData\Local\IconCache.db del %userprofile%\AppData\Local\IconCache.db /a rem 打開explorer start explorer
一般來說,上面幾種方法足夠你解決Win10開始菜單應用名稱變成ms-resource的問題,有遇到的朋友可以試試,不行就重置!