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