此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。- p' S& r0 Q+ t7 e. G
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
+ Y7 o* t/ R9 G2 O! q4 N1 _, n 方式一:$ o& @( R6 \8 @. D
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
7 H) h( J( b4 u" r/ N9 J+ d 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
7 _' L5 m* i0 ` ~) B) I HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。+ P$ V2 ]9 X2 w7 ?" \
方式二:
4 u9 u+ `. W% W0 s7 p 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:5 z' ?+ v( ~8 @7 J2 Q# `
SetTitleMatchMode RegEx
( P% y: p! h: |* j. j5 g return
3 F) l: k2 i4 B3 F/ R: p0 B# [, a# G ; Stuff to do when Windows Explorer is open. ~& M6 r9 W x+ `) d* J- [* _
;! p% b# G/ \! s! N, H, D' C
#IfWinActive ahk_class ExploreWClass|CabinetWClass, r7 e. _8 e; L& j8 W# @/ x- P
; open ‘cmd’ in the current directory3 z+ t2 f( [/ x; ~; M
;% K b( |) |$ V- R
#c::
3 @' U( a5 m$ U8 k OpenCmdInCurrent()7 Z$ d2 z4 S, F
return
: B+ m8 e" X2 m) y# s- t #IfWinActive
2 s ^5 [1 I3 h3 p ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
- h0 d7 U$ f% D& R( Y1 ^8 o ; Note: expecting to be run when the active window is Explorer.
' t5 S ^; d, Y/ M ;
: e6 _: T' l' ^- l( }/ v( w) C OpenCmdInCurrent()
* v0 d) v: x: ?. s; ^* V' p {
+ L' Y5 r) Z5 a3 [0 V5 D" s ; This is required to get the full path of the file from the address bar
8 U& W' V( V! U6 X8 \/ V WinGetText, full_path, A5 p# `9 S: P) F) m& L& v+ @6 h7 Y
; Split on newline (`n)
8 S1 J6 y! N! D* o9 n; W StringSplit, word_array, full_path, `n& n/ h! f6 D9 g# G& z
; Take the first element from the array5 m x5 ]8 ]* {/ B% N: m
full_path = %word_array1%
# b6 {. V5 @' m# D' ~3 C# g; B3 d ; strip to bare address
+ d* N6 U7 h2 X4 t) r full_path := RegExReplace(full_path, “地址: “, “”)
4 Y' S m) }4 u, O& q+ S8 U! ~ ; Just in case – remove all carriage returns (`r)5 D+ Q( X, N& A! ], H
StringReplace, full_path, full_path, `r, , all& Z9 Q1 v9 l/ J, Q5 @2 Y
IfInString full_path, \
2 l1 ~" v6 I I! b# _7 z( ~ {/ i4 Y1 ~& H4 D; k' B% f3 z; r
Run, cmd /K cd /D “%full_path%”
- x7 @& A7 ^- ]8 q }
9 \3 ~/ p3 b; z5 b& M8 W else
K$ `8 O2 k& R7 a7 x6 _. q; K {6 {9 F- y; @) ?
Run, cmd /K cd /D “C:\ ”
! a, \1 H) j+ b }
- k+ U; x$ p; j& K9 S* E }
7 W( K; K/ o" A3 ~ 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
( O( c) O" x, g7 ` 这段小代码肯能有两个你需要修改的地方* f; W& Z" f2 q
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键. s# E! d1 N2 E& e: d; G( U% M) k
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “& t$ X( [6 h. I' n
|