How to delete the icons of Win7 desktop shortcuts
1. Copy the following bat code in txt type file,
2. save it as file extension type bat, run it as administrator role.
———————————————————— Content Start ———————————————————-
reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons” /v 29 /d “%systemroot%\system32\imageres.dll,196″ /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
———————————————————-Content End ———————————————————-
Enjoy it!