Windows 7 Remove frame from large icons view mode

CiroConsentino

Honorable Member
hi all,
every time I want to view my icon files (.ico), Windows 7 always draw a frame surround them.
is there a way to remove this frame ?

I'm using Windows 7 Ultimate 32-bit.
frame_large_icons_view.jpg
 
There are three options that I know of, "Standard", "Drop Shadow" and "No Border". Each require an edit in the registry.

Standard:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000002

Drop Shadow:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000001

No Border:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000000
 
Back
Top