此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
2 i( L) t/ M0 O; k4 f 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
7 Q/ e5 o4 W6 w* x8 H! t3 b 方式一:* r, ^5 _ M8 V u# T. r% a
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,+ b3 D3 I& Q, J3 n0 ~
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和, z( Z, q- q! P' n* I/ r1 E
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。# ^& o/ A/ L: `) f
方式二:* q# L3 A, @# c/ |0 \, O
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
P% `6 w5 m( s5 e SetTitleMatchMode RegEx5 N _4 e' d9 Y( e4 R* F0 d
return( S5 V) d# P+ M$ ~" c3 ?* T- P
; Stuff to do when Windows Explorer is open6 u8 A4 D' r/ H
;
$ `- [/ y9 K2 j2 k& k #IfWinActive ahk_class ExploreWClass|CabinetWClass* X; I$ k. @: ], E1 b
; open ‘cmd’ in the current directory
! }4 @! ~& D8 J- w ;
6 r) G: n- a1 z2 \* j #c::+ I- [7 \0 ]& e9 }9 z3 _: Z
OpenCmdInCurrent()6 V, i0 V& R/ e& A- T
return
7 d' F" t$ T- y% O* U7 f #IfWinActive& a3 f l" m. ~6 U. Q
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
6 ?% ~/ I4 L8 { ; Note: expecting to be run when the active window is Explorer.7 ^9 _8 @% A/ V4 F, h( e
;
0 b( U1 @! l- m& `# p4 v OpenCmdInCurrent()+ ^# q+ Z% i3 Q* `6 L ?% x
{4 \9 y3 G3 t' ?! t2 M/ F
; This is required to get the full path of the file from the address bar
$ `3 e& ^. l9 j3 O! U WinGetText, full_path, A! L& R- x, e: ]6 `
; Split on newline (`n)
4 E0 t$ i) l9 ~4 c StringSplit, word_array, full_path, `n' \/ u4 g$ D# { S: L. x
; Take the first element from the array
/ A' r+ d3 \. i3 t, o1 G G; p8 g8 E full_path = %word_array1%
" s- Z' V' \( a ; strip to bare address0 a/ z( s' u8 l' f
full_path := RegExReplace(full_path, “地址: “, “”)4 d/ e' C, b V( W& F3 Q+ W
; Just in case – remove all carriage returns (`r)
7 m! K* V4 U9 D+ `, w6 m+ S StringReplace, full_path, full_path, `r, , all2 S; q! s8 G' b
IfInString full_path, \5 G% R- K( Z) }
{
/ c; S7 |1 i: c8 c6 @2 s; F. o; C Run, cmd /K cd /D “%full_path%”
. V$ Q+ R/ J; A8 X) x9 N }4 V0 k4 r7 A, \" S9 w
else
! h2 y" x6 {% n {1 A1 X; g, U# N6 L3 J% j0 c0 S
Run, cmd /K cd /D “C:\ ”
8 M% N0 n1 u6 ~' w }
& c3 r6 Z3 N( ^7 Q) g' x) W" m+ { }
5 B& q7 A! f I. F( S: y 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。/ g+ [5 b2 S$ v" p1 F& `
这段小代码肯能有两个你需要修改的地方
% d4 ?, \8 ~; p% U9 X: V 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
+ @' q. N' l. |" q# k$ ]- i 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “* \ ~# m4 I7 q9 ]- O
|