美文网首页
win10去除桌面快捷方式小箭头

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

作者: 帮我的鸵鸟盖个章 | 来源:发表于2019-01-14 14:38 被阅读0次

    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文件,即可去掉桌面快捷方式小箭头。

    2. 回复桌面小箭头

    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
    

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

    相关文章

      网友评论

          本文标题:win10去除桌面快捷方式小箭头

          本文链接:https://www.haomeiwen.com/subject/kjoddqtx.html