Win10消除/恢复快捷方式小箭头

去除箭头

  1. 新建文本文件(.txt)
  2. 复制下面代码粘贴后保存
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. 修改扩展名为(.bat)
  2. 右键管理员身份打开即可看到效果

恢复箭头

  1. 新建文本文件(.txt)
  2. 复制下面代码粘贴后保存
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
taskkill /f /im explorer.exe
start explorer
pause
  1. 修改扩展名为(.bat)
  2. 右键管理员身份打开即可看到效果

猜你喜欢

转载自blog.csdn.net/m0_58537749/article/details/140762502