win10桌面程序去除小箭头

原文地址: 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文件格式,以管理员身份打开。


这样修改以后桌面看了舒服多了。



猜你喜欢

转载自blog.csdn.net/xingfuzhijianxia/article/details/69372572