Utilizza questa scorciatoia da tastiera: Shift + Menu, W, Enter
Shift + Menu (in alternativa, Shift + F10), (apre il menu esteso con il tasto destro del mouse nella cartella corrente)
W (seleziona “Apri qui la finestra di comando”),
- Enter (attiva la selezione; richiesto poiché “Nuovo” è selezionabile anche con W)
Il tasto Menu si riferisce al tasto speciale introdotto da Microsoft, di solito a destra del tasto Win.
Questa scorciatoia è disponibile su un'installazione predefinita di Windows (7) senza software di terze parti.
La via AHK. Basta premere Win + C (o qualsiasi cosa si voglia definire come.):
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:\ "
}
}
Come bonus, lo script qui sopra crea anche un nuovo file di testo con questa scorciatoia: Win + T
Credit to: Eli Bendersky