Gebruik deze toetsenbordcombinatie: Shift + Menu, W, Voer
in 1. Shift + Menu (alternatief, Shift + F10), (opent uitgebreid rechtsklik menu in de huidige map)
W (kiest “Open Command Venster Hier”),
- Enter (activeert selectie; vereist omdat “New” ook met W te selecteren is)
De Menu-toets verwijst naar de speciale toets die door Microsoft is geïntroduceerd, meestal rechts van de rechter Win-toets.
Deze snelkoppeling is beschikbaar op een standaard installatie van Windows (7) zonder software van derden.
De AHK-manier. U hoeft alleen maar op Win + C te drukken (of wat u ook wilt definiëren als.):
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:\ "
}
}
Als bonus maakt het bovenstaande script ook een nieuw tekstbestand aan met deze snelkoppeling: Win + T
Credit to: Eli Bendersky (https://stackoverflow.com/questions/98597/best-autohotkey-macros/100648#100648)