Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of a way to start PowerShell in a specific folder from Windows Explorer, e.g. to right-click in a folder and have an option like "Open PowerShell in this Folder".

It's really annoying to have to change directories to my project folder the first time I run MSBuild every day.

share|improve this question

7 Answers

up vote 96 down vote accepted

In Windows Explorer, just go to the Address Bar at the top (keyboard shortcut: Alt+D) and type powershell and press Enter. A Powershell command window opens with the current directory.

share|improve this answer
3  
Doesn't seem to work in XP. Is it only for Vista/7 ? – Bogdan Jan 20 '12 at 9:31
21  
+1 for the Alt=D shortcut. – Ahmad Mar 13 '12 at 4:59
2  
+1 Sigh... so simple, yet I've been working without it all this time... – Phil Jun 27 '12 at 14:03
Doesn't work for me either (Windows Server 2008 R2) – Marc May 3 at 13:30
When I do this on Win 7, Windows Explorer takes me to a folder I have that is named PowerShell! – Sabuncu May 20 at 8:45

Try the PowerShell PowerToy.. it adds a context menu item for Open PowerShell Here.

Or you could create a shortcut that opens PowerShell with the Start In folder being your Projects folder.

share|improve this answer

http://www.hanselman.com/blog/IntroducingPowerShellPromptHere.aspx

Scott Hanselman has a really simple inf that will do this for you. If you want to tweak the script it is really easy to go and edit the inf for customizations.

share|improve this answer
oops. i think we posted around same time. +1 for duplicate.:) – Gulzar Nazim Oct 8 '08 at 17:58
4  
I like Chris' answer better, as he gives credit where credit due, both by implicitly (with Scott's domain in the full url) and explicitly. – Ken Egozi Sep 17 '10 at 15:03
does this work under Windows 7? Not for me... – Jeremy S. Apr 25 at 15:20

You can download the inf file from here - Introducing PowerShell Prompt Here

share|improve this answer

Just to add in the reverse as a trick, at a powershell prompt you can do:

ii .

To open an explorer window in your current directory.

share|improve this answer
2  
Nice, I had been doing explorer . but ii . is a lot quicker, thanks. – Chris Sutton Oct 8 '08 at 17:46
1  
I thought start . was the canonical way of doing this... – Kit Roed Nov 11 '10 at 14:19

There's a Windows Explorer extension made by the dude who makes tools for SVN that will at least open a command prompt window. Haven't tried it yet so I don't know if it'll do Powershell, but I wanted to share the love with my Stackoverflow bretheren:

http://tools.tortoisesvn.net/StExBar

share|improve this answer

Another option are the excellent Elevation PowerToys by Michael Murgolo on TechNet at http://technet.microsoft.com/en-us/magazine/2008.06.elevation.aspx.

They include PowerShell Prompt Here and PowerShell Prompt Here as Administrator.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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