此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。1 T; p9 t& t; P2 \: [6 L
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
8 D$ P( F$ G- g/ ^( c/ p9 e6 u8 [ 方式一:
3 W8 ^( b u0 R; p# { 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
# x, @7 X9 N6 t% M 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和. [; L3 T* N- `2 ]7 Z$ J
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
! T5 y. k' n; M 方式二:
; W4 m& n/ C( C- W1 q 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:: n/ M R4 N& ~5 }
SetTitleMatchMode RegEx
+ V7 y7 A* O6 @* r x# w# r0 P return9 i9 K$ J9 ?3 S: i
; Stuff to do when Windows Explorer is open4 V+ P v. ^" h% B' M7 `
;
3 P* c* k7 O# A* N1 S# S; ^ #IfWinActive ahk_class ExploreWClass|CabinetWClass
5 h( y& p# T1 h& b. Z) y ; open ‘cmd’ in the current directory# }; X0 V' @$ l/ e
;2 W! Z8 U& T5 U
#c::
. e- T3 z- [0 ^6 o3 G: {4 K OpenCmdInCurrent()* P! y7 X/ L' `* Y$ r
return
\. n- {+ c Y- n #IfWinActive. W9 j* D q/ r0 P# u
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
% o/ ~5 }* S& i9 V5 n ; Note: expecting to be run when the active window is Explorer.2 \/ L7 j5 f8 N, B1 R3 |3 V
;
" I: ^: Y3 b. O" T q' t OpenCmdInCurrent()9 j! z0 r1 x" g1 _
{
6 i9 R" Y! m( X+ _0 X ; This is required to get the full path of the file from the address bar0 X- f) d2 q. l
WinGetText, full_path, A
2 O1 J: `3 s# [$ i; A' y% M ; Split on newline (`n)
8 F# k/ X- x+ b; G' O% O( u StringSplit, word_array, full_path, `n, c* P8 d+ ~$ ^( ]" k; Q( i0 D
; Take the first element from the array
- I' Z7 J* P& h7 l7 z full_path = %word_array1%
5 A) F# s8 N r' S) C8 h" H* W ; strip to bare address$ l6 k: G0 C- _& h& r
full_path := RegExReplace(full_path, “地址: “, “”)
: B: o7 z# v: H `; d2 k ; Just in case – remove all carriage returns (`r)
" @- g- _9 O4 C StringReplace, full_path, full_path, `r, , all7 H f! [ v! `
IfInString full_path, \0 r. `2 U% K# ?9 X' x
{
; c0 X, A- o2 x8 t ] Run, cmd /K cd /D “%full_path%”" R7 p( y2 ~& I" C$ }4 D- `* u. n
}
( H$ P+ g7 |" ~' } else
9 X+ ]$ O2 T8 _5 Y& a! } {) Y7 k4 y q/ B( i
Run, cmd /K cd /D “C:\ ”
) G/ T- `5 B6 D3 a }
3 O! ^1 m. [* T }0 @# M; q; Z) o8 [$ y- \
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。! ?5 U8 Y7 \1 C
这段小代码肯能有两个你需要修改的地方
1 q& F b$ ^+ e) F 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键+ ~- a4 X9 s% K' @
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “5 i: V* `+ w& z* t3 _
|