1. 程式人生 > >去掉Win7快捷方式小箭頭

去掉Win7快捷方式小箭頭

粘貼 task ons sof class font win ack user

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文件類型為所有文件,然後右鍵123.bat-以管理員身份運行該文件,註意代碼格式不要復制錯誤,運行後,快捷方式的小箭頭就被“刪除”了,接著刪掉新建文本文檔和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

去掉Win7快捷方式小箭頭