How to remove small arrows on Winodws7 desktop shortcuts

Source: Internet
Author: User

0, direct the following code

The code is as follows Copy Code

REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons"/V 29/d%systemroot%\ system32\imageres.dll,196 "/t reg_sz/f
taskkill/f/im Explorer.exe
Attrib-s-r-h "%userprofile%\appdata\local\iconcache.db"
Del "%userprofile%\appdata\local\iconcache.db"/f/q
Start explorer
Pause


1, the use of optimization master

The concrete method does not elaborate.

2, the use of Super Rabbit

The concrete method does not elaborate.

3. Modify the Registration Form

A. Start Registry Editor (start-> run-> input regedit), and then expand the following branch: "Hkey_classes_root\lnkfile";
B. Delete the "Isshortcut" string Value entry in the "Lnkfile" subkey because the "Isshortcut" item is used to control whether the normal application and data file shortcuts are displayed in small arrows;
C. Further expand the following branch: "HKEY_CLASSES_ROOT\piffile";
D. Delete the "Isshortcut" string Value entry in the "Piffile" subkey, Isshortcut value entry to control whether or not to display a small arrow of the Ms_dos program shortcut;
E. Exit Registry Editor, restart the EXPLORER.EXE process;

There is also a reference to the correct way to get a transparent pattern under the C:\windows folder and then save the following code as a. Reg Import Registry Restart ok~

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]

"I" = "c:\\windows\\empty.ico,0"

For convenience, I wrote a batch processing (no technical, master do not spray ~), we can double-click to run a little arrow can be removed ...

Because the batch process uses a transparent icon, it cannot be copied directly!

To remove Win7 small arrows batch processing :

The code is as follows Copy Code

@echo off

Color 0a

Title Remove win7 small arrows batch processing

for/f%%i in (' CD ') do set currentpath=%%i

Copy%cd%\empty.ico C:\Windows

@echo Windows Registry Editor Version 5.00>>d:\tmp.reg

@echo [Hkey_classes_root\piffile]>>d:\tmp.reg

@echo "Isshortcut" = "" >>d:\tmp.reg

@echo [Hkey_classes_root\lnkfile]>>d:\tmp.reg

@echo "Isshortcut" = "" >>d:\tmp.reg

@echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]>>D:\tmp.reg

@echo "c:\\windows\\empty.ico,0" = ">>d:\tmp.reg"

REGEDIT/S D:\tmp.reg

Del D:\tmp.reg

taskkill/f/im Explorer.exe

Ping Localhost-n 5

Start "explorer.exe" "%windir%\explorer.exe"

Exit

Restore Win7 Small arrowhead batch

@echo off

Color 0a

Title Recovery win7 Small Arrowhead batch Processing

@echo Windows Registry Editor Version 5.00>>d:\tmp.reg

@echo [-hkey_local_machine\software\microsoft\windows\currentversion\explorer\shell Icons]>>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 "explorer.exe" "%windir%\explorer.exe"

Exit

These two batch processing and transparent icons I have packed, you can download the use of ...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.