vote up 3 vote down star
2

I frequently find myself with a folder open in Windows, wishing to have a command prompt open with the same working directory.

I am aware of Power Toys "Command Prompt", but that only works as a context menu item on the folder, and not from inside the folder if you are already there. I know you can navigate to the parent directory, and use it from there, but if the parent has thousands of directories in it, this is not so convenient. I have tried some home-brewed batch files associated with folder actions in explorer, but those suffer from similar problems.

So, what is the quickest way to open a command prompt with a working directory of the current windows explorer folder?

My current approach: (horrible)

  • Alt - D, Ctrl - C (copy path)
  • Win - R, "cmd", Enter (start command prompt)
  • "cd", Space (start a change directory command)
  • Alt - Space, e, p (paste directory)
  • Enter (execute change directory)

I know there is something better! What is it?

flag

72% accept rate
It's not specifically about a programming language, but the only reason I ever need to do this is because of something programming related, and I am sure others have encountered it as well. – recursive Dec 18 '08 at 16:16
How to boot fast your Windows would be a good question? No because we aren't an IT forum. It's not programming related sorry, – Daok Dec 18 '08 at 16:25
@Daok I think you are too strict.Just look for questions tagged with 'command-line':'What is the safest way to empty a directory in *nix?','How can I diff two files with full context?',etc. Many programmers use cmd line which affects their productivity. I think it's valid question not related to IT. – Gennady Shumakher Dec 18 '08 at 16:50
Well for what it is worth, I feel that it really is an OS question. It is true that the OS definitely does effect programming, but everything in the programmer's life does and you have to draw the line somewhere. – EBGreen Dec 18 '08 at 16:59
@Daok: Get off your high horse! Programmers often need tips about how to do their jobs faster; quickly getting to a command line is one of them. You need you moderator privileges revoked, IMHO. – Software Monkey Dec 18 '08 at 17:57
show 1 more comment

6 Answers

vote up 9 vote down check

Right-click the title-bar icon of the Explorer window. You'll get the current folder's context menu, where you'll find the "command window here" item.

(Note that to see that menu item, you need to have the corresponding "power toy" installed, or you can create the right registry keys yourself to add that item to folders' context menus.)

link|flag
I don't see it in XP either. – palehorse Dec 19 '08 at 14:26
Works in Win2k. Awesome. – recursive Dec 19 '08 at 15:17
Cool. Is there a way to do that with the keyboard? – Hugh Allen May 6 at 0:48
Hugh, please see fm's answer: type "cmd" into the address bar. Based on the question's text, I gather you can get to the address bar with the keyboard with Alt+D. – Rob Kennedy May 7 at 6:16
vote up 7 vote down

In Vista, hold Shift while Right-Clicking a blank space in the desired folder to bring up a more verbose context menu. One of the options is Open Command Window Here

link|flag
Sweet! +1 Thanks for the tip. – RobH Dec 19 '08 at 0:55
vote up 5 vote down

In Windows Vista just type "cmd" to location bar, that's it. It will start a new command prompt in current path.

Better isn't it?

link|flag
And you can quickly get to the location bar by pressing Alt+D. – Tim Stewart Jun 2 at 4:04
vote up 3 vote down

I use StExBar, a Windows Explorer extension that gives you a command prompt button in explorer along with some other cool features (copy path, copy file name & more).

http://tools.tortoisesvn.net/StExBar

EDIT: I just found out (been using it for more than a year and did not know this) that Ctrl+M will do it with StExBar. How's that for fast!

link|flag
vote up 1 vote down

If that's so bothering, you could try to switch to windows explorer alternative like freecommander which has a toolbar button for that purpose.

link|flag
vote up 1 vote down

Almost the same as yours:

  • Alt+d, Ctrl+c
  • Win+r
  • cmd /K cd , Ctrl+v, ENTER
link|flag
Excellent! The last line seems like it should be "cmd /K cd /D", Ctrl+v, ENTER For posterity. – recursive Dec 18 '08 at 16:22
You may need "s if there are spaces in the path. – EBGreen Dec 18 '08 at 16:29

Your Answer

Get an OpenID
or

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