此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
# M( O% Y) K% Y" s8 @& Z7 e' Z 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。2 n G- o) i7 h) H' y
方式一:# a. ?9 s# N% M2 ^( h' {/ r
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表, B, v0 p5 V% a, q1 Z9 j7 P9 _" W
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
- ^+ P. W2 \- ]0 X HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。) w3 U( S& l9 M }& ~2 l/ m( l& u
方式二:8 J5 B0 o$ T$ X( E
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
0 Y7 E' d8 ] e8 } SetTitleMatchMode RegEx( o5 y* f v0 T" |
return
. [1 [, m8 [1 `9 n1 Q1 O ; Stuff to do when Windows Explorer is open# z9 J, e. l9 O2 M* `
;
5 b8 m6 Z( l& V1 y #IfWinActive ahk_class ExploreWClass|CabinetWClass2 `( [0 \6 \! R" V. X* p' E
; open ‘cmd’ in the current directory
( W5 V6 o9 y% G+ n ;: `; H3 q( u/ t+ e
#c::) C8 V N* |# [1 T/ Y
OpenCmdInCurrent()' C3 V7 N M1 @0 ]6 }
return
g) ?, |! [) [" K2 @ #IfWinActive. }8 B* y$ z9 T
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
$ }2 f$ j% L- L) C ; Note: expecting to be run when the active window is Explorer.
; @, E4 a U$ C ;
5 m/ W6 x& A2 t) h# P OpenCmdInCurrent()' x' B# C! k% C# |9 ~; p, R# ?8 A
{
4 p( j) E* Y- L, }* w ; This is required to get the full path of the file from the address bar
, i4 B5 g) a' V- p5 u$ p1 B WinGetText, full_path, A( w2 A: B3 v% |
; Split on newline (`n)
9 Z7 y, @# Y1 `$ c+ D StringSplit, word_array, full_path, `n8 r x9 L5 W7 `' m+ ?0 n8 Z
; Take the first element from the array
6 P8 W1 i4 _6 U I4 g5 ?8 g1 f full_path = %word_array1%
' o' H' }$ v i! [# u ; strip to bare address
7 E) U- }( R4 ^0 m5 y) V0 @ full_path := RegExReplace(full_path, “地址: “, “”)+ I- d' Z3 N k6 W( G% T) Z: K1 ]
; Just in case – remove all carriage returns (`r)
- M E, |% N1 G) W StringReplace, full_path, full_path, `r, , all
, a2 X8 D* M( V* P; k) G. o/ h IfInString full_path, \
/ x* J! q( j6 }: l( R9 k {
4 }7 P& P0 l0 w Run, cmd /K cd /D “%full_path%”
7 ]! x0 U# J+ g- H3 s/ c" B9 [ }) `$ g( a/ [& o" {3 U ?
else
2 }5 I) C7 Y4 a5 F! y8 v {
! D3 L: u6 \5 H0 N2 b9 B Run, cmd /K cd /D “C:\ ”
2 s- v, L, a& f9 T8 E }
2 V( l" y2 F5 d) o/ G }$ t; ~) u0 Y* ^; ^, f
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
+ ?7 ^. |( U+ E& p' C 这段小代码肯能有两个你需要修改的地方
6 ?4 ? Q0 ^+ x9 W1 z0 L' Q; a: ^ 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
( X+ b8 {+ a5 j0 y: i) `! F9 f 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “) ?4 m) L1 [: B, j8 ?! o: y
|