win10去除(还原)快捷方式小箭头

去除:

记事本保存为.bat格式以管理员身份运行

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

还原:

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

你可能感兴趣的:(傻吊计算机)