Utilisez ce raccourci clavier : Shift + Menu , W , Enter
-
Shift + Menu (alternativement, Shift + F10 ), (ouvre le menu étendu du clic droit dans le dossier actuel)
-
W (sélectionne "Ouvrir la fenêtre de commande ici"),
-
Enter (active la sélection ; nécessaire puisque "Nouveau" peut également être sélectionné avec la touche W )
Le site Menu fait référence à la clé spéciale introduite par Microsoft, généralement à droite de la clé de droite. Win clé.
Ce raccourci est disponible sur une installation par défaut de Windows (7) sans aucun logiciel tiers.
La méthode AHK. Vous avez juste besoin d'appuyer sur Win + C (ou ce que vous voulez définir comme tel) :
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:\ "
}
}
En bonus, le script ci-dessus crée également un nouveau fichier texte avec ce raccourci : Win + T
Crédit à : Eli Bendersky
1 votes
En rapport : Ouvrir la fenêtre de l'invite de commande sans maintenir la touche Majuscule enfoncée