此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。" [7 c u2 a7 X* t. i9 @
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
# x% {5 X- a1 _" T. E 方式一:' q- `3 g- O9 S% ~0 \$ s
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,, X" @2 `. E" K& i5 y, C4 a
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和3 d1 Q& D p) v! b; _" c% P8 o4 ~
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。: F6 v! b: e+ L, U- F+ x5 j# i
方式二:& g! z; E# ]5 J* I: S0 D" k
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:1 U8 W; r$ S6 V; p+ P* ~
SetTitleMatchMode RegEx
. M. C8 u0 c% b return' {9 d5 c$ `3 u4 e1 N
; Stuff to do when Windows Explorer is open
3 h( u9 q8 W$ f* Z2 y2 a6 n; N ;
! L$ Z9 k; d7 e7 N# e #IfWinActive ahk_class ExploreWClass|CabinetWClass
6 G. ?1 u! x$ z1 N4 f ; open ‘cmd’ in the current directory
1 x$ o2 q& Y/ A# W1 {+ s; O ;; z4 y( m: q' _, J4 W% |- [1 x
#c::; A, [. j/ @% |8 H4 R5 E U
OpenCmdInCurrent()9 u% \ w( h L- r- P7 N9 V: V
return8 I Y" m: E/ P
#IfWinActive
- S/ Y' K2 r* S% N5 N8 ` ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.0 b w" V O- J! b; c* Z% N
; Note: expecting to be run when the active window is Explorer. a0 Y: H# _$ Q( S/ U' K! |
;# e! R* H$ ^9 f: }" S) c; Y
OpenCmdInCurrent()( d6 A/ ?+ G2 Q; p
{# H0 q; e3 X1 x5 R; b7 w
; This is required to get the full path of the file from the address bar7 a) _' F* @9 M6 a
WinGetText, full_path, A
* N$ |0 k2 o6 V k2 G/ l- ?! ?/ v ; Split on newline (`n)
9 ^ f& X. K0 O2 J2 w( ~ StringSplit, word_array, full_path, `n' n% n7 `% z' [ K p
; Take the first element from the array
; W" N) r5 O* h( g8 Z5 x full_path = %word_array1%
$ W+ {9 R' w9 n3 V. A% P ; strip to bare address! V# p5 O: y& n5 |5 f% z) c5 u
full_path := RegExReplace(full_path, “地址: “, “”)) j# H2 A2 p/ Q( ~* A
; Just in case – remove all carriage returns (`r)7 H; \& f+ M S U3 P4 t# |
StringReplace, full_path, full_path, `r, , all
- t1 R3 n% v: n4 @$ | IfInString full_path, \5 }( M" j, s4 v1 Z2 j2 g# X) c
{
: L: X7 N) f; y5 S Run, cmd /K cd /D “%full_path%”
2 h4 p$ A1 S8 f( U: d& A }/ u4 S4 t) W5 s6 x E) a
else
2 X' g6 H3 z, F* ]5 k- T n {' _- r( e8 A, x$ [
Run, cmd /K cd /D “C:\ ”
+ W" r8 C* s7 u& ^# W+ W7 l }
. y) \# s" N" u5 d& O9 X }
- [4 ~2 t/ h% ] 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
1 W( d, C9 T4 \0 H 这段小代码肯能有两个你需要修改的地方# f: Q5 p! o) \& s3 l5 l) q8 G
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键% S/ d3 o5 c" ]6 C/ a
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “0 A7 u$ X+ C2 |2 E) O
|