此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
- P5 n! ^1 |# ^0 U: a 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
8 k- a0 y+ K6 H 方式一:4 e1 B/ m, D* [) c4 J5 ~
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,6 W+ U, e4 c8 n( o
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
' t4 _+ k0 e! ~7 j- K/ M' ?0 ^ HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。! K f0 N Y6 ]9 M2 I9 Q# z
方式二:
6 J! [6 E0 F5 z( K 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
8 ]' E6 v$ G: K2 | SetTitleMatchMode RegEx
. z% y8 C j& I/ g5 ^7 C# t return$ w5 r8 `# L6 ^' Q* L
; Stuff to do when Windows Explorer is open
4 T3 g1 Z4 ?; w% X- d, E1 g; Z ;' d% i/ c: Q; o9 i# S
#IfWinActive ahk_class ExploreWClass|CabinetWClass
+ y3 W2 ?6 y) X: m: ^ E, h ; open ‘cmd’ in the current directory
4 A( Y9 n- T9 i) q ;
+ s, f# Q3 s/ L6 t4 ^ #c::! }5 E+ L( R$ C6 i0 r
OpenCmdInCurrent()1 D% M# q. b" j/ I+ C8 [
return: k, D4 l2 d$ N m1 ]+ |0 O9 z
#IfWinActive
/ }9 Q5 b8 r. V ; Opens the command shell ‘cmd’ in the directory browsed in Explorer. l* @3 s1 v' \+ _
; Note: expecting to be run when the active window is Explorer.0 F- n! k2 i4 \. v
;
: f" a! _1 a0 y5 t! z- q6 ^9 } OpenCmdInCurrent()
: k! L" }3 B0 @/ } [" `) Y {: k& g7 p; ], h, Y
; This is required to get the full path of the file from the address bar T3 Y8 s, G3 Q1 O2 C3 u9 z
WinGetText, full_path, A
9 c0 s$ M# ` y N4 c# h ; Split on newline (`n)" { r+ @6 d2 H- U4 t. G( D A4 j1 x
StringSplit, word_array, full_path, `n# `- Y* t9 M9 h" \
; Take the first element from the array
: X. g# {" Z! s7 S8 w full_path = %word_array1%
6 G* v2 p' B# ?& ^' l ; strip to bare address
& @- s3 m5 Y/ m- O- L full_path := RegExReplace(full_path, “地址: “, “”)
. |2 V; ]1 A4 f; L, X+ s$ m: t2 C ; Just in case – remove all carriage returns (`r)
. y/ [4 |9 ]( \/ u$ h7 E StringReplace, full_path, full_path, `r, , all t, d" J+ W; g$ x- e, p
IfInString full_path, \
/ b2 s$ A# i& l7 N6 i; d) l {
7 u. X2 U% l4 R2 z' \' ^8 r Run, cmd /K cd /D “%full_path%”
. w/ @6 ]+ v) E2 Z7 O- z }
/ t. r* P7 s4 }4 x4 z( p else
# {& M, Q( x) S1 U2 ?( u1 Q {! y, {( C/ K! d" Z5 _
Run, cmd /K cd /D “C:\ ”% P) x' X% Z! u- g
} M$ r/ R" l! {$ R
}9 n* X% [5 f. o: f' q8 A2 h) z1 b
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。* z- a% Z( p& C* r" t2 W* O
这段小代码肯能有两个你需要修改的地方
L+ n+ y8 X" N2 k6 Q4 s4 w 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键3 B* x& h: R& d. ?4 ^! O. r0 L
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
# i( v" T% B' _0 v9 @ |