Skip to content

如何除去Windows的快捷方式小图标

去除前后效果对比

去除之后(after)

去除之前(before)

具体实现

步骤

  • 新建clear.txt文件

    在win桌面新建一个clear.txt文件

  • txt文件写入以下脚本内容

    bash
    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
  • 修改txt文件后缀名为 .bat

    变为可执行文件

    bash
    .txt >>> .bat
  • 鼠标右键 管理员 执行.bat文件