此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
$ f/ g7 q# P5 b8 G% Y( I! I 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
0 K2 X: N9 Z, E3 _5 ?5 H& C' g 方式一:$ Q8 N& _$ Q2 A7 ~
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,/ K* m( Q E* Z
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和$ a; s% r. A. [3 ^5 }3 Q
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。$ x) H# x& J8 t+ o
方式二:
) V& Q& [' Q( Z4 G( ] 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
( [" _6 p8 N4 c8 c% t7 K4 x SetTitleMatchMode RegEx
8 ~% r4 u3 G, |: p' K- F8 x return
7 E: m" R4 R% a, b- j ; Stuff to do when Windows Explorer is open
2 G, W9 D* `; E ;
$ j3 Z( c$ ?5 o& _2 q) e& n #IfWinActive ahk_class ExploreWClass|CabinetWClass
4 n$ C" u- D+ G3 D% m; E ; open ‘cmd’ in the current directory
! W3 O% l* K7 U8 m. e8 l# i ;
4 M) G6 {% t: t #c::
" w( ]2 u0 W: f, K( N5 m OpenCmdInCurrent()
% K: q$ Z% T/ T9 a' s, V return
h, w" j! y; o5 ] #IfWinActive
/ j) s# P5 a7 q ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
; u$ \+ _' ?; ], m) a/ e ; Note: expecting to be run when the active window is Explorer.
4 g( g& o' R, h7 @6 R- l. U3 S: t ;
/ W6 `/ ~2 l/ n5 O! U& Y OpenCmdInCurrent()( U2 ]: t. h! {" `* s2 B
{
9 x6 U# ^& x8 p/ h1 c ; This is required to get the full path of the file from the address bar
. q4 T8 R! [1 k6 } WinGetText, full_path, A) {, O# q3 t) {9 }. T& {2 C1 f
; Split on newline (`n): [3 p! v8 H* r6 A6 w5 K
StringSplit, word_array, full_path, `n+ F |& |4 |+ q7 r+ ~2 z
; Take the first element from the array
' N4 T* g% n; u# n+ f- k% X full_path = %word_array1%
" Q; {. d2 h/ K+ A ; strip to bare address
1 Q6 p6 m2 I2 l" p8 v full_path := RegExReplace(full_path, “地址: “, “”)2 ]! L! l1 y' w( o' @7 P
; Just in case – remove all carriage returns (`r)( G B# }* O# t6 n5 a
StringReplace, full_path, full_path, `r, , all
$ O5 `8 M/ i! n" q IfInString full_path, \
- [& N" ~/ L( x6 w {
0 q; f$ C1 r' c( r/ [ Run, cmd /K cd /D “%full_path%”, x% E3 z& j( f5 y" j( E& v
}
R; _9 o/ l- @9 }9 S5 D% [ else: N9 Q4 [* O+ Y% c8 n
{" q1 ~5 B: o( V% G
Run, cmd /K cd /D “C:\ ”
" P9 k" G, Z& | }
6 s' I. z# J: F U& b4 B5 U }
& B$ }& u* d/ g% l4 e$ c! n" { 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。! N4 o& r+ l. h2 C
这段小代码肯能有两个你需要修改的地方% e. g# ]/ d: I4 M G1 W
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
$ T9 }! k! k; d 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
6 A# T+ Z6 @4 f+ W |