此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
3 z; i/ |, u7 O 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。2 g( ?6 H8 m; d6 M
方式一:
3 u$ F- Q* @! k5 m' y1 T 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
2 [( h2 ~# O3 t/ m: x 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
: _( F) w. e" j HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
5 h$ L6 \# }8 h' b9 d7 s 方式二:0 U- [" B. b. s: O0 u* z, d/ a) x
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
1 ~! D" z0 f# P, o* f SetTitleMatchMode RegEx
5 H# R" p. i- B. s2 z* B5 y return
- D4 i* e. v8 @9 J ; Stuff to do when Windows Explorer is open
4 e: e6 T" Q( t% u* _ C ;4 k: S+ ?( k# \( v
#IfWinActive ahk_class ExploreWClass|CabinetWClass, x: c1 i- L3 T: a! g" }, P1 H2 t
; open ‘cmd’ in the current directory" I' j- \1 Z* R5 y" e2 v
;
' W1 D- w1 u+ E4 m, n9 {- s( q: C #c::
. `) \0 B, ~8 `+ }! _$ b OpenCmdInCurrent()9 ^) y, E1 i- W, w% N
return s' u2 c: k( s0 K5 b
#IfWinActive7 N$ c* A q# W" F
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
1 k' x) y/ P4 [2 Q ; Note: expecting to be run when the active window is Explorer.
+ E% Y5 Z8 ^5 f9 O* N% @5 ` ;' l' f# Z2 h% y% a6 x. a
OpenCmdInCurrent()
* L! V& n: `% a { {& g/ n0 E0 Y1 d0 D) }" b
; This is required to get the full path of the file from the address bar" H% Y. r- r: G" Y
WinGetText, full_path, A
1 K, I* F& _% T+ a ; Split on newline (`n); b: D7 \3 B! g; W+ W
StringSplit, word_array, full_path, `n
0 H2 g/ n' H5 v, Q- f3 R! t ; Take the first element from the array
2 J4 U* _0 v4 Z0 m- H. t. V full_path = %word_array1%* P0 [" h, u) B+ U f
; strip to bare address, L7 _5 R4 { t1 ?7 w
full_path := RegExReplace(full_path, “地址: “, “”)+ G% y7 |, }# F; h3 {6 q' V' a
; Just in case – remove all carriage returns (`r)
) Q& X) _7 }; T/ E StringReplace, full_path, full_path, `r, , all' c% r9 F. }( [: T, t5 L3 t3 C$ ]7 r
IfInString full_path, \0 J7 ]3 k7 O5 h7 I
{% |2 L; i/ K. ]. j& e
Run, cmd /K cd /D “%full_path%”
4 V* y2 g# k% R4 e% Y7 D }4 T) i/ m. c$ I$ E3 e
else$ R; B0 F) q M0 T0 x$ [% q
{
& a' r p' `0 F6 u5 m& ?9 r8 v3 Z Run, cmd /K cd /D “C:\ ”9 p: Q' ]- L7 Z! V
}
. ^9 } f# ]4 l4 k, O- F# P }( i/ o( R7 L: Q( g
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
# J4 O3 U A' l% n 这段小代码肯能有两个你需要修改的地方
7 t9 i9 C' x& x' e, I 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
* Y ]# ?4 `* y/ b 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
3 Z4 v# g8 q5 l2 Y- G- {* ^ |