win10桌面程式去除小箭頭
阿新 • • 發佈:2019-01-05
原文地址: win10去除桌面小箭頭
新建一個文字檔案,複製如下程式碼
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /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 pause
另存為.bat檔案格式,以管理員身份開啟,即為去除小箭頭;
去除上述設定,如下:
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 pause
同樣另存為.bat檔案格式,以管理員身份開啟。
這樣修改以後桌面看了舒服多了。