Используй эту комбинацию клавиш: Shift + Меню, W, Enter
Shift + Меню (в качестве альтернативы, Shift + F10), (открывает расширенное меню правой кнопкой мыши в текущей папке)
W (выбирает “Открыть окно команд здесь”),
Введите (активирует выбор; требуется, так как “New” также выбирается с помощью W)
Клавиша меню относится к специальной клавише, введенной Microsoft, обычно справа от правой клавиши Win.
Этот ярлык доступен при установке по умолчанию Windows (7) без какого-либо стороннего программного обеспечения.
Способ AHK. Вам просто нужно нажать Win + C (или что вы хотите, чтобы определить его как…):
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:\ "
}
}
В качестве бонуса, сценарий выше также создает новый текстовый файл с помощью этого ярлыка: Win + T
Кредит на: Илай Бендерский