此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
; `+ X- \$ p c* n! Z1 { 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
3 H, i9 N0 v+ }6 M! e! E 方式一:8 S- R$ m' M: g$ @: O% k
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
: ?" [4 n; w. m% a7 P* p7 Q+ h 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
" u1 i, p7 E* U: A HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。! e# e7 ~6 i6 G4 Z2 s( G
方式二:$ p0 B1 r$ u! N/ I: g/ e& ?
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:+ o5 l. x2 R" \( d% t/ J
SetTitleMatchMode RegEx! y# D# I3 s2 s+ h$ |' [
return2 @ h6 }) C+ ~. }
; Stuff to do when Windows Explorer is open
6 J% E! I0 f8 O% }& e Y+ G ;5 ]8 E) K$ b, n; B( `& {
#IfWinActive ahk_class ExploreWClass|CabinetWClass
c, B) g" _/ @7 A; h" b8 T ; open ‘cmd’ in the current directory
+ }- G# j! W( u! k ;8 _. M0 l/ K( V) `; P" p8 Q: I
#c::: ~. \* w0 l9 r- h
OpenCmdInCurrent()9 W9 \3 u: O. M+ \
return8 O; i6 P' i' u2 m1 v
#IfWinActive9 r: z9 n5 f0 B$ z; a
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
' h/ L6 t2 ^) ?5 q2 @ c+ Q ; Note: expecting to be run when the active window is Explorer.
$ A" O- b% J8 L1 @0 u2 Y ;
. N' l+ |/ }+ z O0 n OpenCmdInCurrent()
9 z* E0 V8 P2 n* q& q {
$ D& U- w2 T( I. P: \& ^: P! K3 Z ; This is required to get the full path of the file from the address bar6 R) i3 y' ]- }8 t( Y! b
WinGetText, full_path, A
. W0 F) X: T# k" A& Y5 z( F ; Split on newline (`n)
* [7 d! C0 T1 l5 D StringSplit, word_array, full_path, `n- ?$ o! N, m( X, m V$ ?8 N
; Take the first element from the array
! b# P( S% v: h! D& c* H) F full_path = %word_array1%0 [% c$ P% h! q7 U5 M9 O6 D% L) H
; strip to bare address
# Z8 W+ E4 u! v6 U full_path := RegExReplace(full_path, “地址: “, “”)# l: a' W! E+ [5 P
; Just in case – remove all carriage returns (`r)
8 m& R% p1 k* y; A1 B4 c StringReplace, full_path, full_path, `r, , all
$ ?0 Z0 Q8 t/ I# ?3 t4 F3 t1 o& t IfInString full_path, \
9 g o1 v5 F% c2 I- { {
8 z' V" ] E+ O$ d4 B# w Run, cmd /K cd /D “%full_path%”$ V- Q0 I: Q7 S; D- i" H) Y
}+ V* k6 ~( N- o+ j0 V1 n" @
else
& g$ \9 z7 g9 ~# p {
. d7 W8 w- k7 y1 f$ s- M3 M4 v Run, cmd /K cd /D “C:\ ”
* c2 H) |( o0 [, J) ~. a2 T }
: y4 o5 m$ ?/ [9 |* }( C }8 n' B/ C7 D+ W! m! a
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。2 v) l+ _! ^3 k- s& y( Z4 c
这段小代码肯能有两个你需要修改的地方8 l5 i2 L E9 n$ g/ _: N0 n3 I
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键' d r' v) J1 J, h
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “" ^' g0 m$ M4 p( I! V+ Z
|