Add 'Find Target' to Right Click...
#1
Posted 26 December 2004 - 06:04 PM
Im looking for a way to add the 'find target' command to my 'right click / contextual menu' in windows XP SP2, Im all googled out and can't find jack on the subject of this particular mod...
Anyone out there come across that one ? or can you suggest a way I may find it using RegShot or what ever that app is called ?
Any help is appreciated.
Kay
#2
Posted 30 December 2004 - 04:34 PM
#3
Posted 30 December 2004 - 04:41 PM
#4
Posted 30 December 2004 - 05:05 PM
NOT for me.
Surely theres a way to make that dll call to the existing dll.
Then its a tweak
#5
Posted 30 December 2004 - 09:56 PM
Thanks for your input on this one, I didn't realise it was a dll call, I dunno nothing about dll's so I would never have thought to look down that road...
Tsunami: WOW ! I Googled till I could Google no more on that one, I can't imagine what you typed in to get that result, but a huge THANKS !!
From reading that link, the author of that code had the same problem I now have and had to resort to writing something to do the job, and while Im not nuts about adding something else to the system when I don't know what it does, I really want the functionality of this one... so until something better comes along, Im gonna run with it...
Seasons Greetings to one and all.
Kay
#8
Posted 07 April 2005 - 11:02 PM
you can use a registry hack like this to add "Find Target" to the context menu for every single file type and directory....cant seem to get this to work for just shortcut (.lnk) files (there really is no point in "find target" if you're looking at the file right?) but hopefully this will point someone in the right direction.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\Find.Target]
@="&Find Target"
[HKEY_CLASSES_ROOT\Directory\shell\Find.Target\command]
@="\"explorer.exe\" /select,\"%1\""
[HKEY_CLASSES_ROOT\*\shell]
[HKEY_CLASSES_ROOT\*\shell\Find.Target]
@="&Find Target"
[HKEY_CLASSES_ROOT\*\shell\Find.Target\command]
@="\"explorer.exe\" /select,\"%1\""
#9
Posted 22 April 2005 - 04:11 PM
Perhaps it don't work since .lnk is a normally hidden extension. I know theres a reg tweak to turn them into not hidden but it makes things look nasty lol
#11
Posted 17 August 2005 - 02:06 AM
Oh_key, I'm afraid you won't find such a registry hack for .lnk files. As far as I know you need to load the shelllink and resolve it. After this you'll be able to find the target object. At least Context Magic doing so. I agree with maxXPsoft, you'll need a .dll.
Have a nice day,
Leonid
#12
Posted 17 September 2005 - 02:02 PM
Thanks to everyone for the replies, I have been using the first soloution from Code Project for months now and it works fine, so thats what I will be using again.
It would be nice if there was an easeir way to implement it rather than adding a DLL file, but thats up to Microsoft to add this feature in to their next OS (hint hint)
Kay
#13
Posted 18 September 2005 - 10:41 PM
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\shell\Find.Target] @="&Find Target" [HKEY_CLASSES_ROOT\Directory\shell\Find.Target\command] @="\"explorer.exe\" /select,\"%1\"" [HKEY_CLASSES_ROOT\*\shell] [HKEY_CLASSES_ROOT\*\shell\Find.Target] @="&Find Target" [HKEY_CLASSES_ROOT\*\shell\Find.Target\command] @="\"explorer.exe\" /select,\"%1\""
The long wait is over. Enjoy.
#14
Posted 18 September 2005 - 11:27 PM
This post has been edited by evilvoice: 18 September 2005 - 11:35 PM
#15
Posted 19 September 2005 - 04:08 AM
It should be available from JSI,Inc - tip 8336
#16
Posted 19 September 2005 - 04:37 AM
evilvoice, on Sep 19 2005, 03:27 PM, said:
<{POST_SNAPBACK}>
Driving a car from the back seat is unworkable also. Half-hearted attempts mean little. I do not call the command interpreter from the registry to run it.
Find Target opens explorer to select the file that the shortcut points to. So what is the difference between the RegTweak and the one in shortcut tab in properties?
It does require displaying to only *.lnk files which the RegTweak needs to be improved upon.
#17
Posted 19 September 2005 - 05:39 AM
MHz, on Sep 19 2005, 05:37 AM, said:
evilvoice, on Sep 19 2005, 03:27 PM, said:
<{POST_SNAPBACK}>
Driving a car from the back seat is unworkable also. Half-hearted attempts mean little. I do not call the command interpreter from the registry to run it.
Find Target opens explorer to select the file that the shortcut points to. So what is the difference between the RegTweak and the one in shortcut tab in properties?
It does require displaying to only *.lnk files which the RegTweak needs to be improved upon.
<{POST_SNAPBACK}>
the added portion of the command window was an extra attempt on my part to see if it worked...I really wish it did, but it does not...using the find target in props works fine...just this reg tweak does not. I copied your code directly into a reg entry, merged it, right click on a lnk file, selected find target and it takes me to where the lnk file is (which is All Users Desktop), whereas find target in props takes me to C:\ and highlights the folder.
This post has been edited by evilvoice: 19 September 2005 - 05:43 AM
#18
Posted 19 September 2005 - 06:42 AM
- First create this file and save it as %SystemRoot%\system32\GeTarget.vbs
MsgBox CreateObject("WScript.Shell").CreateShortcut(WScript.Arguments (0)).TargetPath
The above should all be on one line.- Now paste this into Start » Run and click OK
REG ADD "HKCU\Software\Classes\lnkfile\Shell\Find Target\command" /ve /d "wscript.exe \"%SystemRoot%\system32\GeTarget.vbs\" \"%1\"" /fThis should be all one line also.
Now right click any shortcut and choose Find Target
#19
Posted 19 September 2005 - 07:39 AM
code used from filthy_mcnasty's Post
it worked for me, i'm using winxp with SP2
This post has been edited by praveenkumar_ht: 19 September 2005 - 07:40 AM



Help

Back to top









