一、去除小箭頭
新建一個文本文件,把以下代碼粘貼在新建的文本文件中:
1 reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /t reg_sz /f 2 taskkill /f /im explorer.exe 3 attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db" 4 del "%userprofile%\AppData\Local\iconcache.db" /f /q 5 start explorer 6 pause
保存文件后,關閉該文件,對該文件進行重命名,把后綴.txt改為.bat,忽略系統警告,點擊確定,然后以管理員身份打開,此時會發現快捷方式的小圖標不見了。
二、恢復小箭頭
新建一個文本文件,把以下代碼粘貼在新建的文本文件中:
1 reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f 2 taskkill /f /im explorer.exe 3 attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db" 4 del "%userprofile%\AppData\Local\iconcache.db" /f /q 5 start explorer 6 pause
保存文件后,關閉該文件,對該文件進行重命名,把后綴.txt改為.bat,忽略系統警告,點擊確定,然后以管理員身份打開,此時會發現快捷方式的小圖標又出現了。