文章目录
- 取消箭头显示
- 恢复箭头显示
- 结果展示
添加快捷方式之后,会有箭头图标,部分场景下看着较为难受:
可以通过如下方式取消/显示箭头:
取消箭头显示
新建一个.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
start explorer
pause
恢复箭头显示
新建一个.bat文件,内部加入如下命令:
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
taskkill /f /im explorer.exe
start explorer
pause
以管理员身份运行即可。