若是使用普通方法删除Win7快捷方式的小箭头,会使系统出现异常,好比开始菜单中的程序没法删除、收藏夹没法展开等,网上流传使用透明图标的方法有可能会使图标上留下一块黑痣! 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 将上面的代码复制到记事本中,而后另存123.bat XP去掉小箭头的方和和Win7同样,只是所用到的文件不一样 reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "C:\Windows\system32\shell32.dll,49" /t reg_sz /f taskkill /f /im explorer.exe attrib -s -r -h "%userprofile%\Local Settings\Application Data\iconcache.db" del "%userprofile%\Local Settings\Application Data\iconcache.db" /f /q start explorer 恢复Win7快捷方式箭头,注意代码格式不要复制错误 reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /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 恢复XP快捷方式箭头,注意代码格式不要复制错误 reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f taskkill /f /im explorer.exe attrib -s -r -h "%userprofile%\Local Settings\Application Data\iconcache.db" del "%userprofile%\Local Settings\Application Data\iconcache.db" /f /q start explorer