此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。/ M; } l% j9 }* P' `( I
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。 s4 L( _. n# w, x: y' _$ o
方式一:
: s, V9 ^; [/ d( Q! F. y+ O3 }% A 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
! L7 }0 u6 t" }& I! }4 Y5 t& @ 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
' k8 a+ k3 b; ~3 q6 n* L9 G1 G HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
g' A0 l; g( p3 N! e7 I: f 方式二:
' n5 N5 l( X- r' E! ~6 O; ]1 n 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
c- n! c# y+ v SetTitleMatchMode RegEx. W1 E" r! Z" w, x- m# ]( W
return+ H0 @- a7 c1 R# ~
; Stuff to do when Windows Explorer is open
. Q+ L) s% K% G# y3 W ;2 J! K! h$ W: p! u
#IfWinActive ahk_class ExploreWClass|CabinetWClass- s/ L& O- ~- @- P0 ^% _
; open ‘cmd’ in the current directory' U$ R0 _' Y% a8 z& O7 \" |
;' M2 Q+ t( F& }
#c::
( H* w: k2 P" I1 e! v OpenCmdInCurrent()5 C3 y3 z4 V' d
return5 ^ F! t; Y: [* W
#IfWinActive9 C( n& u# z0 x" a. X% v* q
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.5 s( Q6 g5 N \
; Note: expecting to be run when the active window is Explorer.
& g, y- @5 P! N7 c/ R2 T ;
5 k/ J3 T: J6 {" h2 o" o OpenCmdInCurrent()! z h( K9 g0 Y8 i& q2 O% N) {
{: p2 r4 [! [1 @/ H2 n% P
; This is required to get the full path of the file from the address bar
. L, {/ X7 P) P# n WinGetText, full_path, A
1 ~2 T4 g3 @- E, ]$ V ; Split on newline (`n)
) W4 `- t1 ?! @ StringSplit, word_array, full_path, `n) Z t1 _1 b3 t y+ u
; Take the first element from the array: U3 }) w5 v' R9 I
full_path = %word_array1%
+ {0 i/ o. J& {8 | _+ V ; strip to bare address# o) \) x* ^6 k2 k% S
full_path := RegExReplace(full_path, “地址: “, “”)
) X: M) r5 L8 n0 {3 d9 f9 d% e5 U ; Just in case – remove all carriage returns (`r), J% d0 C) l7 |
StringReplace, full_path, full_path, `r, , all
7 D. [2 G' p! }% n IfInString full_path, \/ m. m. Y2 h8 d3 J* B4 g" k4 K
{
* Y+ T& V' F/ Z4 f$ b- H1 D, ?% u Run, cmd /K cd /D “%full_path%” M9 ?% p; X) j/ \
}
* y# j) y( S: a1 |3 D; v else9 _. O6 J# j1 q1 ?; l. Y/ l% E1 X
{2 T+ _1 e: r# Y6 C# B7 ]: i
Run, cmd /K cd /D “C:\ ”
: b @4 N! |0 G& b }
% j' F9 I. q9 P8 P0 C8 f1 k% W* A }" _# n8 R! y! E) c: I
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
6 M# w) G1 G& s3 D 这段小代码肯能有两个你需要修改的地方
4 ]" o& f8 R+ ?& o0 d q# f5 \ 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键' t) t9 D+ k2 U$ ]% m
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “- P9 ^. [/ c3 C- S g1 q r
|