How to remove Win7 system shortcut arrow

  
Know the correct method please drift ~
Online search "Win7
go to the shortcut small arrow", 8 methods are 8 are not correct... (For the majority of netizens chilling ...)
Most people still follow the XP system to the small arrow way to Win7 small arrow ... Although it can also be removed, but have you found that your management can not open?
Your program can't be locked to the taskbar? Can't your program be attached to the start menu? ......
If you have encountered the above problems, then you will be right!
On the Internet, the correct method is also mentioned, that is, a transparent pattern is obtained under the C:\\Windows folder, and then the following code is saved as a .reg import registry restart OK~
Windows Registry Editor Version 5.00 < BR>[HKEY_LOCAL_MacHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Icons]
&quot;29&quot;=&quot;C:\\\\Windows\\\\Empty.ico,0&quot; BR> For the sake of convenience, I wrote a batch processing based on this (no technical, master do not spray ~), you can double-click to run can remove the small arrow ...
because the batch uses a transparent icon, so Can't copy directly!
Remove the Win7 small arrow batch:
@echo off
color 0a
title Remove the Win7 small arrow batch
for /f %%i in (&#39;cd&# 39;) do set currentpath=%%i
copy %cd%\\Empty.ico c:\\Windows
@echo Windows Registry Editor Version 5.00&gt;&gt;D:\\tmp.reg < BR>@echo [HKEY_CLASSES_ROOT\\piffile]&gt;&gt;D:\\tmp.reg
@echo &quot;IsShortcut&quot;=&quot;&quot;&gt;& ;gt;D:\\tmp.reg
@echo [HKEY_CLASSES_ROOT\\lnkfile]&gt;&gt;D:\\tmp.reg
@echo &quot;IsShortcut&quot;=&quot ;&quot;&gt;&gt;D:\\tmp.reg
@echo [HKEY_LOCAL_MacHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Icons]&gt;&gt;D: \\tmp.reg
@echo &quot;29&quot;=&quot;C:\\\\Windows\\\\Empty.ico,0&quot;&gt;&gt;D:\\tmp. Reg
regedit/s D:\\tmp.reg
del D:\\tmp.reg
taskkill /f /im Explorer.exe
ping localhost -n 5
start &quot; Explorer.exe&quot; &quot;%windir%\\explorer.exe&quot;
exit
Recover Win7 Small Arrow Batch
@echo off
color 0a
title Restore Win7 Small Arrow Batch
@echo Windows Registry Editor Version 5.00&gt;&gt;D:\\tmp .reg
@echo [-HKEY_LOCAL_MacHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Icons]&gt;&gt;D:\\tmp.reg
regedit/s D:\\tmp.reg
del D:\\tmp.reg
del c:\\Windows\\Empty.ico
taskkill /f /im Explorer.exe
ping localhost -n 5
start &quot;explorer .exe&quot; &quot;%windir%\\explorer.exe&quot;
exit
Copyright © Windows knowledge All Rights Reserved