此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。1 a L7 ^: Z D" w D2 Q0 V
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。3 c& e& P+ ~, s* v8 v G$ u. A3 P
方式一:
# S5 L# l. D" z" \3 }) t; K 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
2 [9 F6 ]3 Z# V: S 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
. O( T& Z" s# Z b HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
2 A, M% Z- I" G) s 方式二:4 e. [: G! N; _ Q! {& d# k8 x
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:. |' z8 s* A: _" {
SetTitleMatchMode RegEx
/ `" X0 S0 h0 x return
7 V6 {4 p$ ?, \% l- o ; Stuff to do when Windows Explorer is open% E( I0 @$ |% A
;9 {/ N* o+ I2 @$ j, P/ `& x
#IfWinActive ahk_class ExploreWClass|CabinetWClass% G. u) L: Y. Y0 h2 k3 L% d" s
; open ‘cmd’ in the current directory
0 W0 u) @9 |: d' ` \. [ ;
! }- d3 u/ T! s, H9 a; D1 n: a #c::) D3 q. K4 c! S
OpenCmdInCurrent()
- F4 A- h7 x! y8 B- k) A2 s4 |0 u9 E+ \ return
7 X4 u" y8 [( j' [* |( Y #IfWinActive, Z' l: ]) e- j8 \
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
- w9 E" p, ` ]4 n+ X ; Note: expecting to be run when the active window is Explorer.
9 N! ]! t: [" i9 n$ M ;
8 s4 F9 m, Y$ V7 Y) ]% W OpenCmdInCurrent() E" p. i2 |; z( J
{- ?. ?+ L; l, e( S1 L2 I
; This is required to get the full path of the file from the address bar
# t( v* q- @ Q/ h& Z5 m% ] WinGetText, full_path, A& _! S0 V& j3 a* u
; Split on newline (`n)
2 Y' I1 `; ]; \4 i0 [ StringSplit, word_array, full_path, `n5 X, s9 w' q4 @4 O0 u
; Take the first element from the array
7 l) v0 k) V1 @! _1 b) e% t full_path = %word_array1% v- R; s: R4 r H
; strip to bare address
" {: ~& I$ e+ d# N8 ]9 z full_path := RegExReplace(full_path, “地址: “, “”)5 t( r; \( e4 p+ Y
; Just in case – remove all carriage returns (`r)) v; a, S% O# e
StringReplace, full_path, full_path, `r, , all
- O, g, G* r: W# s! _ IfInString full_path, \
# q' [2 R! ` H3 q2 h7 u1 z {4 q% m' x3 `4 N, |( \
Run, cmd /K cd /D “%full_path%”8 v9 n9 P. E6 {2 }( T0 S
}
7 c: G, ^ S- g5 G9 m' X( v. R# y else6 @9 C- u) R+ s% M6 B5 a+ k
{
8 \0 d* q" W1 z3 I8 s7 ^ Run, cmd /K cd /D “C:\ ”
! d" T- t$ a; W2 k }; U4 G7 |# X% z
}
, G- m& Q3 R+ z& ?* w7 O% W$ O, Q 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
$ ]. {9 I! t3 t K# t 这段小代码肯能有两个你需要修改的地方8 h4 a2 _/ J0 d8 ?3 t
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键# V) e$ T! A' V9 P+ [
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
; U7 q. q% @" V0 ^ |