此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
" C- A) }. ?% X6 |* B2 l 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
9 X0 {9 o5 L4 c W 方式一:! G+ p2 K+ l N9 k! R
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,% R7 D+ I9 r8 e: q
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和& v$ g1 Z9 @% a* X- i' B; a
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。" \' k" g0 Q1 b
方式二:
# e5 z' b+ O4 l0 P V# s* P 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:( Z8 s/ ]3 Q3 C0 J$ @, {
SetTitleMatchMode RegEx
, {) v5 c* ?! Q return! E4 @. T; I) G7 {$ E+ `
; Stuff to do when Windows Explorer is open
9 P' X. `& k+ G; e. [5 I& T ;5 |* W3 V+ ]- ^: `
#IfWinActive ahk_class ExploreWClass|CabinetWClass
1 v% x1 _8 [6 v2 ` ; open ‘cmd’ in the current directory
E. s3 h; s( A( j" N9 ] ;1 p" }+ u0 D5 }
#c::: B [% G0 K& k9 ~$ l3 \
OpenCmdInCurrent()2 A( J. j6 A' r8 l* n
return
, M- _5 ?- v" f: N3 [( T' S% w #IfWinActive: _, d& t6 T2 t; A
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
% n% V( `7 i2 R+ z" \* U, U ; Note: expecting to be run when the active window is Explorer.
0 R1 j. i4 m* L4 ], r ;
' c6 w" w! {4 O OpenCmdInCurrent()' I% m- i# n# i1 F1 g' A
{
8 |4 C1 G* Y% k, a! I ; This is required to get the full path of the file from the address bar# _" G( ]1 E6 G7 R/ U6 v$ ?
WinGetText, full_path, A* ~- y8 P; ]9 G# K( u$ E
; Split on newline (`n)
; A4 ~/ i' @( h" L" A6 Q; b# c4 J StringSplit, word_array, full_path, `n1 b5 a3 @+ @" C, [6 @. ^+ S
; Take the first element from the array% U, l% U, L9 k( F3 v
full_path = %word_array1%
/ k+ _$ h5 S, T" w q! g ; strip to bare address6 I" Z9 Q& E5 {! E o8 r8 r
full_path := RegExReplace(full_path, “地址: “, “”)
9 y3 @/ d3 h4 y+ q ; Just in case – remove all carriage returns (`r)
- W+ g3 L# g7 K. ` StringReplace, full_path, full_path, `r, , all
: }$ h: t6 R( l IfInString full_path, \1 n7 l+ a5 S3 W( M
{7 x' s8 ?- U+ H5 U
Run, cmd /K cd /D “%full_path%”( L$ i. S. W7 u9 E" a/ P0 X
}
& b4 @8 f" M7 w$ Q else- r: {3 ?5 y) L
{
% H" x' e/ R7 m4 } Run, cmd /K cd /D “C:\ ”& e4 \- l1 d8 D7 D. F# B; u6 b9 N
}
: M: o1 V/ i; B" k4 l }+ D% o7 h0 x( R* [. N1 W7 {8 [* x1 v8 B: T
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。0 L) i! x; z9 q' \4 K
这段小代码肯能有两个你需要修改的地方( j( X! ]5 J4 l4 b& y$ q- F
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键/ Y; \) e7 W) A% i! c: [
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “4 r2 g7 P8 B( H1 {$ T5 R0 t% l
|