Utilizar este atalho de teclado: Shift + Menu, W, Enter
Shift + Menu (em alternativa, Shift + F10), (abre o menu ampliado com o botão direito na pasta actual)
W (selecciona “Abrir janela de comandos aqui”),
Enter (activa a selecção; necessário porque “New” também é seleccionável com W)
A tecla Menu refere-se à tecla especial introduzida pela Microsoft, normalmente à direita da tecla Win correcta.
Este atalho está disponível numa instalação padrão do Windows (7) sem qualquer software de terceiros.
O caminho AHK. Só precisa de carregar em Win + C (ou o que quiser definir como.):
SetTitleMatchMode RegEx
return
; Stuff to do when Windows Explorer is open
;
#IfWinActive ahk_class ExploreWClass|CabinetWClass
; create new text file
;
#t::Send !fwt
; open 'cmd' in the current directory
;
#c::
OpenCmdInCurrent()
return
#IfWinActive
; Opens the command shell 'cmd' in the directory browsed in Explorer.
; Note: expecting to be run when the active window is Explorer.
;
OpenCmdInCurrent()
{
; This is required to get the full path of the file from the address bar
WinGetText, full_path, A
; Split on newline (`n)
StringSplit, word_array, full_path, `n
; Find and take the element from the array that contains address
Loop, %word_array0%
{
IfInString, word_array%A_Index%, Address
{
full_path := word_array%A_Index%
break
}
}
; strip to bare address
full_path := RegExReplace(full_path, "^Address: ", "")
; Just in case - remove all carriage returns (`r)
StringReplace, full_path, full_path, `r, , all
IfInString full_path, \
{
Run, cmd /K cd /D "%full_path%"
}
else
{
Run, cmd /K cd /D "C:\ "
}
}
Como bónus, o script acima também cria um novo ficheiro de texto com este atalho: Win + T
Crédito para: Eli Bendersky