此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。' s& L, F6 {0 w7 \
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。. T, Q; v9 S$ S
方式一:
+ ~0 o7 W8 V, ]( J 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
% z( P/ [$ j1 H; I" G 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和! g% ^$ p( m2 @( L! a2 A
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。! E6 Q' h ^6 \& u6 {
方式二:
8 y Z3 Z& e" v, B 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
6 H0 p6 G7 t& P% V- O5 _" ~ SetTitleMatchMode RegEx
; n6 q& ^8 z$ c1 M( _ return
7 y. \, [$ `* ?- S" n- c ; Stuff to do when Windows Explorer is open
7 I4 l6 ^2 |# V% d$ G5 Y# k4 F ;
% I8 _( P; v$ x4 F m #IfWinActive ahk_class ExploreWClass|CabinetWClass9 m) a% K1 k3 x" s: r
; open ‘cmd’ in the current directory
. ^* e3 A8 V" z& T, C* ~ ;/ Y4 D: q0 D2 n% U1 d2 q" q
#c::
$ w, g4 s* q. L: l$ m" |& a OpenCmdInCurrent()6 F# T, V4 u8 T& r
return
- z; `4 Q* R5 G# ~, @. S #IfWinActive7 s0 U3 ]2 G7 ]6 u/ r
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.( p# y: Q% W: g) G: M ]6 J
; Note: expecting to be run when the active window is Explorer.
/ I. C& N/ r7 A# e6 s* w' v ;5 V3 M: z9 @# r7 D
OpenCmdInCurrent()5 O9 K+ W; F; v9 M/ o. t8 U
{: W- H+ a8 S( S- ~' ]9 T* `$ V, Y" \
; This is required to get the full path of the file from the address bar$ q- a" [; k: P( \6 D- E
WinGetText, full_path, A
) L3 Y( `, w( L/ ?5 \( ?; b ; Split on newline (`n)- h# m% w: T; ~" Y
StringSplit, word_array, full_path, `n
7 t8 C; T g% F, o9 a ; Take the first element from the array Y9 B% `' r2 t% ^
full_path = %word_array1%) H- D% v" V( n! c
; strip to bare address, g: y8 [" b1 u- a+ ]" z. C d
full_path := RegExReplace(full_path, “地址: “, “”)* t0 J$ p, n6 c2 N) N( H; H
; Just in case – remove all carriage returns (`r)$ ]: L6 |2 j+ X# T! v! ^
StringReplace, full_path, full_path, `r, , all
& y; s# ] l, q IfInString full_path, \
0 N4 x$ K' W# m- g8 O {9 W- s y9 A# m8 T0 ^' D; g
Run, cmd /K cd /D “%full_path%”
7 O( m( {* k7 ^7 f8 t& i8 A" P }6 d' `1 H- }0 U3 K7 @ ?) a' G
else$ b5 m( t$ n5 n) E" {
{
! c0 |: N5 W2 } Run, cmd /K cd /D “C:\ ”8 V& k& M/ n, D1 J9 p7 b- T* V
}
; X4 A. S6 G) h1 s+ M+ C }
3 [0 {5 K' [ E$ Y% m6 X0 Y# D9 j4 P 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
3 T" t& N% q2 P1 z- @7 G& G. r* _ 这段小代码肯能有两个你需要修改的地方
( P( B4 {9 O3 ]8 p- O5 s: o 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键( h# b/ _5 m5 O1 z4 U
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “. k* g" O! I5 Q" f( M: N" e
|