Windows10、Windows11去除快捷方式箭头方法

Windows11原始桌面快捷方式图标:

屏幕截图 2024-05-16 205004

修改后:

屏幕截图 2024-05-16 204904

Windows11修改方法

  1. 新建一个文本文件(如不显示.txt后缀电脑要在文件夹里设置“显示已知文件扩展名”)
  2. 复制下面代码粘贴后保存
  3. 修改扩展名为.bat文件
  4. 右键以管理员身份打开
1
2
3
4
5
6
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

Windows10代码,步骤同上

去除箭头
1
2
3
4
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
恢复箭头
1
2
3
4
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
taskkill /f /im explorer.exe
start explorer
pause

这种方法不会导致任何问题可放心食用 ୧(๑•̀⌄•́๑)૭。


Windows10、Windows11去除快捷方式箭头方法
https://www.sajuna.cn/2024/05/16/Windows10、Windows11去除快捷方式箭头方法/
作者
ZikQ
发布于
2024年5月16日
许可协议