这款软件算是强迫症福音,Windows默认的快捷方式会有个小箭头,看起来很是抓狂,本款小软件就是解决该问题的。
默认效果
移除后
是不是看起来清爽很多,本工具分Windows 11和Windows 11以下,因为软件修改的是注册表,小伙伴一定不要搞混淆了
如果不想使用软件,我们也提供代码的方法
Windows 11
- 新建一个文本文件(如不显示.txt后缀电脑要在文件夹里设置“显示已知文件扩展名”)
- 复制下面代码粘贴后保存
- 修改扩展名为.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
win10代码,步骤同上
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
恢复箭头
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f taskkill /f /im explorer.exe start explorer pause
评论留言