win10去除桌面快捷方式小箭头

1、去掉小箭头

reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause

在桌面新建一个txt文本文档,将以上代码复制到txt文本文档中保存,然后再把文档的后缀名改成.bat,最后以管理员身份运行这个.bat文档就可以去除箭头了。

2、恢复小箭头

reg delete "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause

  

原文地址:https://www.cnblogs.com/torchstar/p/14382364.html