美文网首页
Win10/11去掉快捷方式箭头

Win10/11去掉快捷方式箭头

作者: 我也不知道啊丶 | 来源:发表于2022-11-12 15:57 被阅读0次
    1. 新建一个文本文件(如不显示.txt后缀电脑要在文件夹里设置“显示已知文件扩展名”)
    2. 复制下面代码粘贴后保存
    3. 修改扩展名为.bat文件
    4. 右键以管理员身份打开

    Win11去掉箭头

    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
    

    Win10去掉箭头

    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
    

    恢复

    reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
    taskkill /f /im explorer.exe
    start explorer
    pause
    

    相关文章

      网友评论

          本文标题:Win10/11去掉快捷方式箭头

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