win7去掉快捷方式小箭头最正确的方法!
知道正确方法的请飘过~
网上一搜“win7去快捷方式小箭头”,10个方法有8个都是不正确的……(为广大网民寒心……)
大多数人还是按照XP系统去小箭头的方式去win7的小箭头……虽然也能去掉,但是你有没有发现你的管理打不开了?
你的程序无法锁定到任务栏?你的程序无法附到开始菜单?…… 电脑桌面图标有箭头
如果你遇到过上述问题,那这帖你就看对了!
网上也有提到正确的方法,即把一个透明图样得到C:\windows文件夹下,然后把下面这段代码保存为.reg导入注册表重启OK~
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]
"29"="C:\\Windows\\Empty.ico,0"
为了方便性,我据此写了个批处理(没有技术性,高手勿喷~),大家可以双击运行一下就能去掉小箭头
了……
由于批处理用到一个透明图标,所以不能直接复制运行!
去除win7小箭头批处理:
@echo off
color 0a
title 去掉win7小箭头批处理
for /f %%i in ('cd') do set currentpath=%%i
copy %cd%\Empty.ico c:\windows
@echo Windows Registry Editor Version 5.00>>D:\
@echo [HKEY_CLASSES_ROOT\piffile]>>D:\
@echo "IsShortcut"="">>D:\
@echo [HKEY_CLASSES_ROOT\lnkfile]>>D:\
@echo "IsShortcut"="">>D:\
@echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]>>D:\
@echo "29"="C:\\Windows\\Empty.ico,0">>D:\
regedit/s D:\
del D:\
taskkill /f /
ping localhost -n 5
start "" "%windir%\"
exit
恢复win7小箭头批处理
@echo off
color 0a
title 恢复win7小箭头批处理
@echo Windows Registry Editor Version 5.00>>D:\
@echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]>>D:\
regedit/s D:\
del D:\
del c:\windows\Empty.ico
taskkill /f /
ping localhost -n 5
start "" "%windir%\"
exit
这两个批处理和透明图标我都打包好了,大家可以直接下
地址:bbs.windows7en/thread-89432-1-1.html#JUMP 

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。