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_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons” /v 29 /d “%systemroot%system32imageres.dll,196″ /t reg_sz /f

taskkill /f /im explorer.exe

attrib -s -r -h “%userprofile%AppDataLocaliconcache.db”

del “%userprofile%AppDataLocaliconcache.db” /f /q

start explorer

———————————————————-Content End ———————————————————-

Enjoy it!

原文地址:https://www.cnblogs.com/alicusblog/p/3364519.html