win7桌面图标箭头怎么去掉
时间:2022-03-18 10:29
隐藏图标箭头方法:
新建一个文本文档,复制如下代码到新的文本文档中,点击“文件--另存为”,来到另存为窗口把“文件名”修改为“文件名.bat”的格式,将“保存类型”设置为“所有文件”,然后点击保存;
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,196" /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
恢复方法:
再次新建一个文本文档,复制如下代码到新的文本文档中,并保存为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