win10去除小箭头(备忘)

去除小箭头.bat:

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

恢复小箭头.bat:

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

都是以管理员身份运行

转自(感谢)

win10完美去除快捷方式小箭头的方法
http://bbs.kafan.cn/thread-1843802-1-1.html
(出处: 卡饭)

原文地址:https://www.cnblogs.com/liangqinghai/p/7041605.html