此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。2 g& b! F" i2 N& Y0 c5 E1 p
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。: @: P7 A% W1 v' z/ C7 ?
方式一:
7 s& i) H# C' \6 j6 K 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,! f V9 d7 M+ S3 s% D& E
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
% [4 l, s: R8 m' I$ r% ? b5 ]$ m HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。 D: |7 ?# Z( n% u
方式二:8 o( u1 y$ H: g- e$ ^" J, v3 ~ F
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
! I4 }# s4 N; K+ V1 x SetTitleMatchMode RegEx8 Y; t( b/ O$ o" x# f8 L) q
return
- C7 M; I6 `2 u- W0 J* m ; Stuff to do when Windows Explorer is open8 y. P6 W$ t" y3 s
;
. m9 f5 i; P- h! E0 O% L) H+ o- Z #IfWinActive ahk_class ExploreWClass|CabinetWClass- E0 O+ D5 Q1 @6 y1 C
; open ‘cmd’ in the current directory, N7 F7 a6 Z- K" F& N8 {( _
;# h% s% W& ~5 W$ Q2 o4 I
#c::
: I b* d7 ]' y. @: X. v/ F. l4 o! W OpenCmdInCurrent(), \8 f6 i- ]* f- N
return
6 y; G3 h/ D( y #IfWinActive3 J" X3 y. J+ K5 F. i% k+ L
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
~2 @9 h$ ~% n: L ; Note: expecting to be run when the active window is Explorer.# l1 [* J. U0 L# }8 ]7 K9 s; p4 t6 K
;" [2 |% f9 O6 T* C
OpenCmdInCurrent()7 j9 [/ b o c0 r2 J
{2 R( F+ \3 T1 M
; This is required to get the full path of the file from the address bar
5 _' C# e U# x/ @; z6 y WinGetText, full_path, A' `! ]2 m5 G# D4 H; v6 X0 o" @4 W
; Split on newline (`n)3 G. Q0 {! X$ _) I. u5 n
StringSplit, word_array, full_path, `n& i, n. G. h: g
; Take the first element from the array
3 s1 i8 u0 I: U# ]* t( R7 B full_path = %word_array1%
# t* A3 ^1 P7 T. s1 F+ L/ i- T ; strip to bare address. r" T9 e$ T6 y' k- {
full_path := RegExReplace(full_path, “地址: “, “”)8 M! x$ @3 `* h$ S4 S2 Z. n- b
; Just in case – remove all carriage returns (`r)) v7 y$ b7 o% t9 X2 Q
StringReplace, full_path, full_path, `r, , all
7 j/ O' z/ [0 ]' ` T9 w IfInString full_path, \
, O7 x! W; Y5 n/ o( E. }. p {
' V$ k# [5 s K! V2 ?) t- g Run, cmd /K cd /D “%full_path%”
, N! {2 d5 w) Z6 j+ p9 n& P- ? }& v- p7 ]5 i: y( r7 ]* |' A
else
$ c! a1 i& M/ _6 h4 A$ A {
4 I; U9 F6 A ?3 f Run, cmd /K cd /D “C:\ ”- d% d( `/ |" A3 e, c- X
} P9 i3 x- }5 ~) s4 B" q* q4 L% O
}
/ Q( v# W( D/ q/ i3 o 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
% A# v% m& ]( W" m( L7 { 这段小代码肯能有两个你需要修改的地方1 j9 c& l0 O: U% `4 W, y9 z
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
$ ]' h8 O- n& | 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
0 L1 j% @9 m$ C |