WIN11系統(tǒng)刪除快捷鍵圖標報錯提示該文件沒有與之關聯(lián)的應用來執(zhí)行該操作

破案了,這個問題是刪除注冊表的鍋,需要恢復注冊表
桌面新建 txt,把下面的代碼復制粘貼到 txt 文件,然后重命名為1.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
正確的刪除箭頭方式
桌面新建 txt,把下面的代碼復制粘貼到 txt 文件,然后重命名為2.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