一、去除小箭头
新建一个文本文件,把以下代码粘贴在新建的文本文件中:
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,忽略系统警告,点击确定,然后以管理员身份打开,此时会发现快捷方式的小图标又出现了。