即使现实总是不尽人意,也永远无法阻碍我们变得优秀。

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

一、去除小箭头

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

 

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,忽略系统警告,点击确定,然后以管理员身份打开,此时会发现快捷方式的小图标又出现了。

 

posted @ 2020-03-26 19:17  依概率收敛于你  阅读(1078)  评论(0编辑  收藏  举报