此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。1 Z/ J* V, z. F* k: @
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。' n/ L5 P- Q# W6 X6 _ K N; h0 R
方式一:$ j) u8 J7 F% m+ I" e* \/ f
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
6 P5 ]# K& _) |0 @" }$ q 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
1 X/ P% v$ Q6 U5 X/ {9 t HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。) s4 J. k$ K" j* x) a
方式二:
0 r2 ?2 G- x' g. m* f3 W 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:# n2 b2 I6 \/ C9 j
SetTitleMatchMode RegEx) g3 i4 j/ {. q3 k) B% {7 i" s& ?& p
return# l' F! ~$ |) a/ O/ I6 r2 E, x' l
; Stuff to do when Windows Explorer is open
% d; c) U$ x" ? ;
4 U' p( P4 Z' _6 d #IfWinActive ahk_class ExploreWClass|CabinetWClass: X0 {3 O+ f& m3 M2 T: u
; open ‘cmd’ in the current directory# v ?( I( C% C( J+ g4 M+ B
;
; w) T# J4 _: e6 v( T) s #c::
3 b8 q5 u7 q' T; q OpenCmdInCurrent()8 c* n: }/ c& h3 J& O
return
/ V/ D' P8 `0 m' Z- ? #IfWinActive& Z4 ^2 c$ h; G- h! y
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.& V k/ ~% A" I
; Note: expecting to be run when the active window is Explorer.* N* X2 f |; r4 S8 ^: ?1 |
;7 B4 t7 E2 [6 k
OpenCmdInCurrent()6 n, ~2 v- X2 H/ i2 r" l
{
) K& A8 a7 S3 X ; This is required to get the full path of the file from the address bar
. [! P, E( }4 A; c5 _3 w* _ WinGetText, full_path, A7 e" h0 Z5 U: V9 {$ L7 Y; r
; Split on newline (`n)0 e8 E* J" k9 A; E/ m3 F+ T. c; ?$ l
StringSplit, word_array, full_path, `n
: K/ F4 X! c0 L8 T ; Take the first element from the array* w" i+ A. V$ B& u7 G T5 T
full_path = %word_array1%6 i- l* g3 o, K1 X- m1 }4 o
; strip to bare address- k' R4 R, ?) ]9 u& h9 i9 G$ ~
full_path := RegExReplace(full_path, “地址: “, “”); L# D+ N" t. G5 S3 b
; Just in case – remove all carriage returns (`r)2 C( Q3 B+ Q, f \% ^ C8 c Z
StringReplace, full_path, full_path, `r, , all# G3 u- E; s0 D
IfInString full_path, \
. L7 f3 X/ y" ]% C4 U {% \" j1 m$ p+ ^- Q8 b! a. q$ `
Run, cmd /K cd /D “%full_path%”+ m- E1 Q! c1 o" j4 U
}6 t$ Y% K0 E3 n+ o: F
else( v3 j7 b" d1 F
{
+ ~2 o Y) w/ s6 L$ k Run, cmd /K cd /D “C:\ ”0 f, l; r% r2 W! [" W+ [4 ]2 k% f
}
0 P. l, | m6 l+ O- E- @! j }
0 B2 I8 M: Q7 J: O$ H, p1 i 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
+ M& Z: |/ I* e4 h) p& d3 Q* [ 这段小代码肯能有两个你需要修改的地方2 M4 n' X* C3 q! F% L9 n
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
4 ^# c7 M+ Y" |* U/ x% ^ 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
J {: c; `+ q& H+ u' i |