桌面快捷方式去除小箭头与恢复小箭头的方法


一、去除小箭头

  新建一个文本文件,把以下代码粘贴在新建的文本文件中:

 

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 2 taskkill /f /im explorer.exe 3 attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
4 del "%userprofile%\AppData\Local\iconcache.db" /f /q 5 start explorer 6 pause

 

保存文件后,关闭该文件,对该文件进行重命名,把后缀.txt改为.bat,忽略系统警告,点击确定,然后以管理员身份打开,此时会发现快捷方式的小图标不见了。

二、恢复小箭头

  新建一个文本文件,把以下代码粘贴在新建的文本文件中:

 

1 reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f 2 taskkill /f /im explorer.exe 3 attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
4 del "%userprofile%\AppData\Local\iconcache.db" /f /q 5 start explorer 6 pause

 

保存文件后,关闭该文件,对该文件进行重命名,把后缀.txt改为.bat,忽略系统警告,点击确定,然后以管理员身份打开,此时会发现快捷方式的小图标又出现了。

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM