Use este atalho de teclado: Shift + Menu , W , Inserir
-
Deslocamento + Menu (alternativamente, Deslocamento + F10 ), (abre estendido à direita- clique no menu na pasta atual)
-
W (seleciona "Abrir janela de comando aqui"),
- Enter (ativa a seleção; necessário, pois "Novo" também é selecionável com W )
A tecla Menu refere-se à chave especial introduzida pela Microsoft, geralmente à direita da tecla Win correta.
Este atalho está disponível em uma instalação padrão do Windows (7) sem qualquer software de terceiros.
O caminho do AHK. Você só precisa pressionar Win + C (ou o que você 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 um bônus, o script acima também cria um novo arquivo de texto com este atalho: Win + T
Crédito para: Eli Bendersky