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

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

  1. 去掉小箭头
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

新建文本文档,将上面代码粘贴至该文档,保存。重命名该文档,改后缀为.bat,保存。

管理员 的身份运行该.bat文件,即可去掉桌面快捷方式小箭头。

  1. 回复桌面小箭头
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /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

用法同上。注意是管理员权限。

posted @ 2021-01-18 17:07  青砖黛瓦  阅读(128)  评论(0编辑  收藏  举报