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.

link|improve this question

feedback

6 Answers

up vote 24 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.

link|improve this answer
Doesn't seem to work in XP. Is it only for Vista/7 ? – Bogdan Jan 20 at 9:31
3  
+1 for the Alt=D shortcut. – Ahmad Mar 13 at 4:59
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
oops. i think we posted around same time. +1 for duplicate.:) – Gulzar Nazim Oct 8 '08 at 17:58
2  
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
feedback

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.

link|improve this answer
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
feedback

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.

link|improve this answer
feedback

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

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.