win11去除小箭頭不當導致出錯:該文件沒有與之關聯的應用來進行該操作


解決辦法:恢復小箭頭即可

新建文件,輸入以下代碼,把文件格式改為.bat,雙擊運行

taskkill /f /im explorer.exe
 
 reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "C:\Windows\system32\imageres.dll,154" /t reg_sz /f
 
 reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "C:\Windows\system32\imageres.dll,154" /t reg_sz /f
 
 reg add "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /t reg_sz /f
 
 reg add "HEKY_CLASSES_ROOT\piffile" /v IsShortcut /t reg_sz /f
 
 start explorer

若還想去除小箭頭,可通過以下方法:
新建文件,輸入以下代碼,把文件格式改為.bat,以管理員身份運行

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
del "%userprofile%\AppData\Local\iconcache.db" /f /q
start explorer
pause


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM