首页 > win8 > 正文

win8系统快捷方式小箭头怎么去掉?

卡饭网 梦在深巷 2016-12-25 20:35:18

win8系统快捷方式小箭头怎么去掉?

win8系统快捷方式小箭头怎么去掉?

  在桌面右键新建一个文本文档,将下面的代码复制进去,另存为win8.bat(文件类型选择所有文件),右键“以管理员身份运行”,重启电脑即可方法快捷方式箭头消失了。

  reg add “HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons” /v 29 /d

  “%systemroot%system32imageres.dll,197” /t reg_sz /f

  taskkill /f /im explorer.exe

  attrib -s -r -h “%userprofile%AppDataLocaliconcache.db”

  del “%userprofile%AppDataLocaliconcache.db” /f /q

  start explorer

  如果需要恢复小箭头,可以使用同样的方法,代码用下面的。

  reg delete “HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons” /v 29 /f

  taskkill /f /im explorer.exe

  attrib -s -r -h “%userprofile%AppDataLocaliconcache.db”

  del “%userprofile%AppDataLocaliconcache.db” /f /q

  start explorer