当前位置:网站首页>去处电脑桌面小箭头

去处电脑桌面小箭头

2022-06-24 19:42:00 程序员久安

1.去除小箭头

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文件,然后以管理员身份打开。

2.恢复小箭头

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文件,管理员身份打开。就可恢复小箭头了。

原网站

版权声明
本文为[程序员久安]所创,转载请带上原文链接,感谢
https://withk.blog.csdn.net/article/details/123065413