介绍 |
这款Win8去除快捷方式图标小编亲测确实能去掉小盾牌,但是在详细列表的时候,程序图标会在右下角有个黑块。 相关介绍 完美去小箭头的方法: 就是把小箭头的图标替换成系统文件imageres.dll文件的第197号图标,也就是透明的。而小箭头的图标地址的29号,。更改后完美去除。 由此,得到了,启发,把小盾牌(图标地址77)替换成系统文件imageres.dll文件的第197号图标,清除缓存,重启explorer,惊喜出现了,完美去除,无黑块bug。!!! 注意: reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,197" /t reg_sz /f reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 77 /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 + 上面的代码保存bat。以管理员权限运行。 |