win7旗舰版64位如何去除快捷方式小箭头

 

1、新建一个bat文件,代码具体如下:

 1 @echo off
 2 rem 'reg'不是批处理命令解决方法 双击path- C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;
 3 rem reg delete HKcr\Lnkfile /v IsShortcut /f 
 4 
 5 reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,196" /t reg_sz /f
 6 
 7 taskkill /f /im explorer.exe
 8 
 9 attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
10 
11 del "%userprofile%\AppData\Local\iconcache.db" /f /q
12 
13 start explorer

2、双击执行所保存的bat文件即可。

 

posted @ 2014-11-20 09:57  光之使者  阅读(522)  评论(0编辑  收藏  举报