My OS is Win7. When I need to open a cmd.exe at current working directory, I will press "shift" key and right click the screen and I will get "Open command window here". Is there any faster way?
Asked
Active
Viewed 1,002 times
3 Answers
0
No, that's the fastest way... Doing it with a keyboard would be longer than doing it with the mouse.
Canadian Luke
- 24,640
0
You could script it. This AutoHotkey script opens a command window on the folder you're currently browsing by pressing Ctrl + Alt + H:
#IfWinActive ahk_class CabinetWClass ; for use in explorer.
^!h::
ClipSaved := ClipboardAll
Send !d
Sleep 10
Send ^c
Run, cmd /K "cd `"%clipboard%`""
Clipboard := ClipSaved
ClipSaved =
return
#IfWinActive
Courtesy of Lifehacker reader Kevin.
jáquer
- 931