当前位置:网站首页>Whereabouts computer desktop small arrow

Whereabouts computer desktop small arrow

2022-06-24 23:16:00 Programmer Jiuan

1. Remove the little arrow

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

Copy the code above . Save as .bat file , Then open... As administrator .

2. Restore small arrow

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

Empathy , Save as .bat file , Open as Administrator . You can restore the small arrow .

原网站

版权声明
本文为[Programmer Jiuan]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206241745463692.html