| View previous topic :: View next topic |
| Author |
Message |
Cephei1
Joined: 04 Aug 2008 Posts: 199 Location: UK
|
Posted: Fri Mar 06, 2009 6:17 pm Post subject: Explorer.exe Context Menu Option |
|
|
Hey, i have this really need for a script that allows me to right click on a folder and allow me to select "Open in new windows" coz sometimes its helpful.
Like saves time by not having to open up a random folder and navigate to the same location, it can be fustrating. Soo any ideas?
Can it be done through AHK or by modifying the Explorer.exe file.. not sure
Thanks
D4B5T3R |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 8688
|
Posted: Fri Mar 06, 2009 9:41 pm Post subject: |
|
|
If you save above code as Open.ahk to SendTo folder, you can right click a folder and select Send To > Open.ahk to open the folder in new instance of windows explorer.
If you have trouble in locating the SendTo folder, try the following code:
| Code: | | Run %A_MyDocuments%\..\SendTo |
Just a idea.. maybe a bad one. |
|
| Back to top |
|
 |
Cephei1
Joined: 04 Aug 2008 Posts: 199 Location: UK
|
Posted: Sat Mar 07, 2009 4:46 pm Post subject: |
|
|
Thanks for the help SKAN, but i fixed it lol heres what i came up with
Paste this into a NAME.reg file:
| Code: | Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Folder\shell\Open in new window]
[HKEY_CLASSES_ROOT\Folder\shell\Open in new window\Command]
@="C:\\Windows\\Explorer.exe \"%1\"" |
I cant believe i actually figured this out with no help hope this helps someone lol, Lemme know
THANKS FOR THE HELP SKAN
D4B5T3R |
|
| Back to top |
|
 |
|