若是使用普通方法刪除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