1. 程式人生 > 其它 >win11去除小箭頭不當導致出錯:該檔案沒有與之關聯的應用來進行該操作

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