How to not show arrow on shortcut icons?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
binocular222
Posts: 1423
Joined: 04 Nov 2008 05:35
Location: Win11, Win10, 100% Scaling

How to not show arrow on shortcut icons?

Post by binocular222 »

I disabled the arrow overlay in Windows Explorer via a registry hack
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]
"29"="C:\\Windows\\System32\\shell32.dll,50"
However, XYplorer still show the arrow?
(I already have color filter to highlight lnk files, so no need the arrow)
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488

klownboy
Posts: 4462
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.8737 at 100% 2560x1440

Re: How to not show arrow on shortcut icons?

Post by klownboy »

No way around it I'm afraid. I asked the same question here a while back. http://www.xyplorer.com/xyfc/viewtopic. ... t=shortcut No one responded so I took that as, no one cares or it's not going to happen. :) I was thinking there may be some type of work-around. Later though I saw this post which states it's not supported. http://www.xyplorer.com/xyfc/viewtopic. ... cut+arrows

TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

Re: How to not show arrow on shortcut icons?

Post by TheQwerty »

Assuming your OS is 64-bit - what if you apply the same registry tweaks under the Wow6432Node key?

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\explorer

klownboy
Posts: 4462
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.8737 at 100% 2560x1440

Re: How to not show arrow on shortcut icons?

Post by klownboy »

TheQwerty once again you're working your magic (hopefully I have the right person this time :whistle: ). Your registry tweak worked. A one liner like this here...

Code: Select all

   run """<xy>"" /new ""C:\Users\ken\Tools\"" /win=normal,500,250,615,470 /script=""::#309;loadlayout('thumbs');open 'D:\Tools\AutoHotkey\AHK scripts\TB_XY_hide.ahk';""", , 0, 0;
Where the "Tools" folder is nothing but some links and the small AHK script is nothing but this...

Code: Select all

#SingleInstance force
DetectHiddenWindows, on
#MaxMem 1
   HWND := WinExist("ahk_class ThunderRT6FormDC")
   IfWinActive, ahk_id %HWND%
	{
	  WinGet, Style, Style, ahk_id %HWND%
	  if (Style & +0xC00000) {	  
	  WinSet, Style, -0xC00000, ahk_id %HWND%     
	  exitapp
      }
	  exitapp
	}
...produces this and yes, that's a second instance of XYplorer.
XY_reg_tweak.PNG
Thanks,
Ken

Edit 1: I've been using a 2nd instance of XY for viewing thumbnails quite a bit. So I setup a hotkey which will close any second instance of XY since there's no menu or toolbar present.

Edit 2: In looking at this though, I should do something about getting rid of the lnk extensions.
To see the attached files, you need to log into the forum.

highend
Posts: 14950
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: How to not show arrow on shortcut icons?

Post by highend »

Edit 2: In looking at this though, I should do something about getting rid of the lnk extensions.

Code: Select all

REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "link" /t REG_BINARY /d "00000000" /f
Ofc this is only for newly created files, not existing ones.
One of my scripts helped you out? Please donate via Paypal

klownboy
Posts: 4462
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.8737 at 100% 2560x1440

Re: How to not show arrow on shortcut icons?

Post by klownboy »

Thanks highend. Do you happen to know why if I have the same type of view in Windows Explorer, similar to the one above but with medium icons, WE does not show the file extensions for the lnk files whereas XY does? I don't have hide extensions set in WE.

As a follow-up to my previous post, I just discovered that if you add "lnk" extension to the "Image Files" under "Previewed Formats" in XY's Configuration, the shortcut overlays are not shown for the "lnk" file icons when in the list mode as well.

TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

Re: How to not show arrow on shortcut icons?

Post by TheQwerty »

klownboy wrote:Thanks highend. Do you happen to know why if I have the same type of view in Windows Explorer, similar to the one above but with medium icons, WE does not show the file extensions for the lnk files whereas XY does? I don't have hide extensions set in WE.
XYplorer is probably also ignoring or not aware of the 'NeverShowExt' key, unlike WE.

More info: http://www.askvg.com/tip-how-to-show-fi ... -explorer/

klownboy
Posts: 4462
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.8737 at 100% 2560x1440

Re: How to not show arrow on shortcut icons?

Post by klownboy »

Funny, I was reading the same website probably because it's the first one in the list when "display of lnk extensions" is Googled. Thanks.

admin
Site Admin
Posts: 66324
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: How to not show arrow on shortcut icons?

Post by admin »

TheQwerty wrote:
klownboy wrote:Thanks highend. Do you happen to know why if I have the same type of view in Windows Explorer, similar to the one above but with medium icons, WE does not show the file extensions for the lnk files whereas XY does? I don't have hide extensions set in WE.
XYplorer is probably also ignoring or not aware of the 'NeverShowExt' key, unlike WE.

More info: http://www.askvg.com/tip-how-to-show-fi ... -explorer/
Interesting. But even now that I know of it I will ignore it. It's just too crazy to hide extensions.

TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

Re: How to not show arrow on shortcut icons?

Post by TheQwerty »

admin wrote:But even now that I know of it I will ignore it. It's just too crazy to hide extensions.
No argument here!

Post Reply