Add Open Target Folder to the Context Menu (Line 198)
http://www.kellys-korner-xp.com/xp_tweaks.htm
--
All the Best,
Kelly
MS-MVP Win98/XP [AE-Windows® XP]
Troubleshooting Windows XP
http://www.kellys-korner-xp.com
http://www.kellys-korner-xp.com/xp_abc.htm
http://www.kellys-korner-xp.com/xp_tweaks.htm
Top 10 Frequently Asked Questions and Answers
http://www.kellys-korner-xp.com/top10faqs.htm
"Fred" <fr...@madeupemailaddress.com> wrote in message
news:b7e8s5$hav$1...@newsg2.svr.pol.co.uk...
This adds a cascading menu to shortcuts that puts the context menu for the target on the shortcuts menu, and an Open Container command (which opens the folder and selects the target).
It would be trivial to write a script. And I just written one.
set WshShell = WScript.CreateObject("WScript.Shell")
Dim Ag
Set Ag=Wscript.Arguments
For I = 0 to Ag.Count - 1
a=a & Ag.item(I)
Next
set oShellLink = WshShell.CreateShortcut(A)
TheTargetPath= oShellLink.TargetPath
WshShell.Run "explorer.exe /select," & TheTargetPath
Then assign this script as a verb in Folder options or add by hand to the registry changing path to suit.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\lnkfile\Shell\Target]
@="Find Target"
[HKEY_CLASSES_ROOT\lnkfile\Shell\Target\command]
@="wscript \"C:\\Desktop\\New Text Document.vbs\" \"%1\""
--
http://www.g2mil.com/Apr2003.htm
http://www1.iraqwar.ru/?userlang=en
http://news.lycos.com/news/photo.asp?section=BreakingPhotos&photoId=293509&from=email
---------------------------------------------------------------
David Candy
http://www.mvps.org/serenitymacros
---------------------------------------------------------------
"Fred" <fr...@madeupemailaddress.com> wrote in message news:b7jr2e$d34$1...@news6.svr.pol.co.uk...
Open the zip file and place the .dll and the .exe in the same folder, then
execute.
--
All the Best,
Kelly
MS-MVP Win98/XP [AE-Windows® XP]
Troubleshooting Windows XP
http://www.kellys-korner-xp.com
http://www.kellys-korner-xp.com/xp_abc.htm
http://www.kellys-korner-xp.com/xp_tweaks.htm
Top 10 Frequently Asked Questions and Answers
http://www.kellys-korner-xp.com/top10faqs.htm
"Fred" <fr...@madeupemailaddress.com> wrote in message
news:b7jr2e$d34$1...@news6.svr.pol.co.uk...
--
All the Best,
Kelly
MS-MVP Win98/XP [AE-Windows® XP]
Troubleshooting Windows XP
http://www.kellys-korner-xp.com
http://www.kellys-korner-xp.com/xp_abc.htm
http://www.kellys-korner-xp.com/xp_tweaks.htm
Top 10 Frequently Asked Questions and Answers
http://www.kellys-korner-xp.com/top10faqs.htm
"Fred" <fr...@madeupemailaddress.com> wrote in message
news:b7m7a3$2i4$1...@news8.svr.pol.co.uk...