去除Win10快捷图标小箭头

有点强迫症,一看到操作系统上的快捷图标小箭头就想把它去除掉。

去除小箭头

reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause

恢复小箭头

reg delete "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause

使用方法:新建文件文件,将代码复制进去,另存为后缀名为bat的批处理文件,以管理员身份运行它!

原文地址:https://www.cnblogs.com/liweis/p/9214427.html