Like this but for Windows. Preferably from Cygwin, and with relative paths

$ open ./
link|improve this question

FYI, for more on open on OS X, check out superuser.com/questions/4368/os-x-equivalent-of-windows-run-box/… – David Pearce Apr 23 '10 at 15:19
feedback

1 Answer

up vote 5 down vote accepted

To launch the current directory:

From cmd.exe, you can just type start . to launch Explorer.

If you use PowerShell, you can use invoke-item . or the alias ii .

You can replace "." with any directory path.

link|improve this answer
2  
explorer . would be the explicit variant – Joey Apr 23 '10 at 14:33
1  
explorer /e,. if you want the tree on the left. – afrazier Apr 23 '10 at 14:50
feedback

Your Answer

 
or
required, but never shown

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