win8快捷方式上面肯定有個(gè)標(biāo)志性的小箭頭,如果想要讓這樣的小箭頭消失其實(shí)已經(jīng)是老話題了,而方法也是換湯不換藥。從我使用XP開(kāi)始,我就非常不喜歡桌面快捷方式的小箭頭,無(wú)論是后來(lái)的vista還是windows7。于是我通過(guò)安裝windows優(yōu)化大師類(lèi)似的優(yōu)化工具去除快捷方式小箭頭,而在最新的windows8上,我們可以使用一個(gè)簡(jiǎn)單的技巧來(lái)達(dá)到目的。
![](/d/20211018/7dbe6b56449eebab18d2d3eafa854761.gif)
win8快捷方式小箭頭去除技巧
在桌面右鍵新建一個(gè)文本文檔,將下面的代碼復(fù)制進(jìn)去,另存為win8.bat(文件類(lèi)型選擇所有文件),右鍵“以管理員身份運(yùn)行”,重啟電腦即可方法快捷方式箭頭消失了。
reg add “HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons” /v 29 /d
“%systemroot%system32imageres.dll,197” /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h “%userprofile%AppDataLocaliconcache.db”
del “%userprofile%AppDataLocaliconcache.db” /f /q
start explorer
如果需要恢復(fù)小箭頭,可以使用同樣的方法,代碼用下面的。
reg delete “HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons” /v 29 /f
taskkill /f /im explorer.exe
attrib -s -r -h “%userprofile%AppDataLocaliconcache.db”
del “%userprofile%AppDataLocaliconcache.db” /f /q
start explorer