此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。& a5 o3 @9 j; s9 p% z$ N" W
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
' S7 I5 \: `& R4 L" y4 e 方式一:
3 y% w3 _2 x$ S 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
, X( E: k6 C) l, A 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和+ F: ?+ H6 i6 o2 a" }7 A
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
/ l" m4 B& K- S2 }, w 方式二:
" L# e/ s1 U. L5 L. i! |2 u0 t 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
: I2 \% {/ t2 P' _ SetTitleMatchMode RegEx& l, T2 Q0 I# Z4 x
return* K, ^/ y' L' u* J! f
; Stuff to do when Windows Explorer is open
! F$ ?& U' n& N5 |* [, E0 E$ e/ r/ N ;
' x! J5 _" [( W* ~' w; {' M #IfWinActive ahk_class ExploreWClass|CabinetWClass
& _2 m' \) N% O ; open ‘cmd’ in the current directory
( R# F- C! E4 x6 K# s' J; E ;! i. p' ]# w& @ F. {' {) _5 i
#c::
; U4 T- Q3 B7 V2 C, a6 { OpenCmdInCurrent()8 p1 O/ G0 ]5 X/ d# F% y
return
' L$ c$ Q0 k8 P9 K* B8 q #IfWinActive2 m, r. b1 \, I6 t1 F! P5 S
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
" c" N- k) n \( x) p ; Note: expecting to be run when the active window is Explorer.5 M8 N; m- f/ Y4 W) h* n) T Q
;7 N+ p ]+ d2 D0 T4 s j
OpenCmdInCurrent()5 d9 {" P3 T0 |! V$ M' X
{4 y* Y$ b% b, i3 t1 C( |
; This is required to get the full path of the file from the address bar- ]; t$ \) ?6 H0 u A H$ @
WinGetText, full_path, A3 [: G9 g4 g8 d- M) i j3 \
; Split on newline (`n)
+ {; y. D1 K3 s. A StringSplit, word_array, full_path, `n& k; G7 I; H" }. o4 r# E- d& ]
; Take the first element from the array
3 Z9 }1 q8 w8 ^+ A5 ^8 j full_path = %word_array1% M9 y( M, q7 Z1 k0 `
; strip to bare address
6 q) I4 _, I- W; D; ] full_path := RegExReplace(full_path, “地址: “, “”)
- n% ?* X6 b4 P" G) \ ; Just in case – remove all carriage returns (`r)
0 a* Y2 v4 q$ v/ \3 o* l) a! _! @7 A StringReplace, full_path, full_path, `r, , all$ M0 v& @. r5 S! e
IfInString full_path, \
0 x/ t4 p1 ]) W0 D7 u Z {
k$ J# B: w Q1 J6 {# m% a7 } Run, cmd /K cd /D “%full_path%”
% r* y$ h. P; o! ~8 m: f" Y }
, K2 w$ m u. k9 T( a else2 q( U7 M* x# ^9 p& j$ s2 j3 l
{
# o! V" G, R( x6 U" N( v$ c Run, cmd /K cd /D “C:\ ”
! {5 B/ ?$ T; {% B7 y+ p! t }
' W5 G* g3 _- ?) P$ |$ r }; a* [; e. E1 x
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
) R( ?) s* l/ _1 J8 g* T 这段小代码肯能有两个你需要修改的地方
~& c* p! Q" ^9 ^" Z+ O 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键* i" E6 R; {) c4 X
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “, J0 O3 v9 M6 P0 {9 F+ S
|