Windows10/11 系统去除/恢复快捷方式小箭头的方法

去除快捷方式小箭头

复制上面的代码,新建一个文本文件,粘贴后另存为.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

恢复已去除快捷方式小箭头

同理,将上述代码另存为.bat 文件,管理员身份打开。就可恢复小箭头了。

reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /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

这种方法不会导致任何问题可放心使用。

参考资料:

https://www.52pojie.cn/thread-1723770-1-2.html

上一篇 Everything-Windows系统文件搜索工具
下一篇 各品牌主板、笔记本、台式机的U盘启动快捷热键大全对照图表