此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
2 u! t% e% x' w% F 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。1 ^+ B: b! w: ]4 b# _. e5 x
方式一:7 I4 D. c7 U* H5 v3 Z. T" g3 d
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
t7 b4 t" C8 p. S7 u 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
, k) d- W/ W- g5 c0 A8 k5 P1 p HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。1 P( u( k! H/ }7 k* D* n
方式二:4 Q- o- E! \2 y/ a
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:9 j6 Y. W1 z& P8 {
SetTitleMatchMode RegEx1 m& D) q' P9 l
return
) U* C9 A+ @3 _8 |! d. l ; Stuff to do when Windows Explorer is open
. V: m$ q6 m6 T/ F( A+ g ; q0 t2 v+ r& Q6 R: h1 U* F
#IfWinActive ahk_class ExploreWClass|CabinetWClass9 m, J4 T% A" {6 B5 U
; open ‘cmd’ in the current directory
# l, ] r9 g- P ?! O ;5 j- k4 E% E' T
#c::# f( r( M: `* ~9 N. e6 r
OpenCmdInCurrent()
; @7 Y# p5 ^* k4 x) b( \ return
1 t! Y' I, Q/ L3 E' J& W3 S+ c0 r #IfWinActive
/ S! w' R; b- L. @ ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.. Y, C% t0 ?$ ]$ @ n% i
; Note: expecting to be run when the active window is Explorer./ H0 ?7 ?4 c% X- m6 g
;% ~2 D( U, u: g) T, Y6 V
OpenCmdInCurrent()
& ]. I# e6 I3 X g7 Y- q1 v {% b6 Y0 d C. o" ]/ ^/ P
; This is required to get the full path of the file from the address bar
% c8 z: q9 m% ^# D WinGetText, full_path, A8 F+ {5 E% Q' N$ s# `6 [9 N6 e* j* U
; Split on newline (`n)
4 S W$ } b0 @# ] StringSplit, word_array, full_path, `n
D0 r# d2 q4 G2 Y B$ f ; Take the first element from the array
7 J" n/ `7 e) ?; |" n/ p+ p. M full_path = %word_array1%
5 l3 b# x" [5 M ; strip to bare address
7 R6 J" z6 y8 J+ D9 v" m. [ full_path := RegExReplace(full_path, “地址: “, “”)- u- {0 B% g9 L: k$ Q
; Just in case – remove all carriage returns (`r)! f1 d/ O) O- _/ V
StringReplace, full_path, full_path, `r, , all' i/ t1 V# k. P Z
IfInString full_path, \: j" ^5 x3 J( E4 y8 w
{
8 x3 d3 z& F2 J# q! i- ~- K Run, cmd /K cd /D “%full_path%”4 }7 ]6 `; @( e$ O, }4 t, e
}0 I* \! }; R$ b9 q8 }
else0 _ q& x% ?+ d0 a7 i- y% w
{ |$ ^7 d4 o7 A: u Q5 l+ d4 b
Run, cmd /K cd /D “C:\ ”" |7 R6 q, ? T: S0 v
}
! c0 C4 y; l6 z* } }2 @$ M. _% {& Z, B8 L% V
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
# G3 g a6 T$ _$ T9 z1 C 这段小代码肯能有两个你需要修改的地方0 c1 {0 s: t4 i' C
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键! e( _1 J8 W8 a$ g) o4 i* [
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
( e) t. `4 {$ o1 r |