你是否在Windows10系統中,使用開始功能表裡面的小工具會閃退,開啟左下角搜尋功能會反灰+閃退或使用資料夾的搜尋也沒辦法?
原因1 字體造成
自行安裝的字體路徑 ->%userprofile%\AppData\Local\Microsoft\Windows\Fonts
系統內建的字體路徑 ->C:\Windows\Fonts
因為自行安裝字體時安裝到內建字體,與 C:\Windows\Fonts 產生bug,導致部分功能無法使用
解決辦法:
使用PE、安全模式、Administrator帳號(擇一)進入font路徑
C:\Users\(你的使用者名稱)\AppData\Local\Microsoft\Windows\Fonts
移除以下字體
msjh.ttc
msjh.ttf
msjhbd.ttc
msjhbd.ttf
msjhl.ttc
times_0
timesbd_0
timesbi_0
timesi_0
原因2 系統異常
使用Powershell 路徑 C:\WINDOWS\system32\WindowsPowerShell\v1.0\
以系統管理員身分執行 powershell.exe 輸入
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
(指令重新註冊所有 Windows Store 應用程式)
重開機後還是無效 請再使用Powershell輸入
icacls "C:\Program Files\WindowsApps" /reset /t /c /q
再輸入
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
