I remember in Ubuntu, I think it was Gnome, Nautilus had this option in the right-click context menu that allowed you to open a terminal whose working dir was the dir you were visiting in Nautilus, not the default '/home' dir. Is there any way to get that kind of functionality in Windows XP?

link|improve this question

67% accept rate
feedback

4 Answers

up vote 8 down vote accepted

You don't need any tool to do this. Just a small Registry hack

Open a new file and paste this content, save as *.reg file

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\cmd]
@="Open Command Prompt Here"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\cmd\command]
@="cmd.exe /k pushd %L"

And then double click into this file. Here we go!

link|improve this answer
+1 - best way of doing it! – William Hilsum Jan 21 '10 at 14:36
Yeah, but I always hate to tell people to edit their registry without knowing their knowledge level ahead of time. By any chance, is there a complimentary registry hack to remove these keys? – DaveParillo Jan 21 '10 at 16:19
To delete a registry key with a .reg file, put a hyphen (-) in front of the RegistryPath in the .reg file – hvtuananh Jan 21 '10 at 17:21
+1 I have a bunch of .reg saved away with shell hacks but it was quicker to find it here. Worked like a charm. It would be great if you added the remove reg file for newbs who don't know how to modify the reg. – Evan Plaice Jan 8 '11 at 9:19
feedback

Probably the simplest way is to use the Microsoft Power Toys - there is a CmdHere.exe specifically to do this.

link|improve this answer
feedback

I know this question is about Windows XP, but this is a sidenote:

These methods are unnecessary in Windows 7. In this version Shift Right-click allows access to a context menu with additional options, including open terminal here (more detail at download squad). Also holding down Control will open it with elevated privileges.

link|improve this answer
feedback

xpy can add this to the Explorer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.