此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
5 y( V; R5 N( W) q 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。4 n& a9 F8 n/ H4 J- X8 S
方式一:
/ i8 F. t* a8 a" [( X 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
& j/ g: ~5 I9 J$ o' [ 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
, s$ j2 T4 ^: c: |' G HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。 b" }7 c7 s9 U6 R7 Q
方式二:& _2 N9 A4 H0 z/ l# V" m) H
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:& Y/ S* k$ \5 |% x
SetTitleMatchMode RegEx
. [8 o: L/ X' _' \. f8 g- ~ return3 ~9 P6 A8 b- j
; Stuff to do when Windows Explorer is open$ k8 C( a4 M0 t* i* W
;
. i2 ^ `, q# y6 |9 X* }7 P o #IfWinActive ahk_class ExploreWClass|CabinetWClass! @5 ]1 P' |$ J6 E
; open ‘cmd’ in the current directory% v! [/ G2 B( [: P P) m
;
2 v5 d; Y0 ~1 j- O& S! A# g #c::% V9 ]8 \) o) _7 h V( V
OpenCmdInCurrent()
) [& B6 _3 i5 ^/ e, G3 f2 _ return
, Y: e8 |, n& R5 p& [0 |8 P) i #IfWinActive! I* c( z# f$ a6 C4 p o. J/ T
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
- M8 x0 I! r8 \8 x ; Note: expecting to be run when the active window is Explorer.
/ p/ t) K8 ]# W _3 P) P ;8 @% r P9 d% G: w+ E# a
OpenCmdInCurrent()2 q( Q1 d4 X7 V& y1 S0 V0 A
{: \$ ?8 n* j! _- [6 x% j: T
; This is required to get the full path of the file from the address bar, F7 M5 y7 w, ] N
WinGetText, full_path, A
) M) ~! q% \8 j9 L. L1 A ; Split on newline (`n), G2 s9 R6 L+ Q( F( H. L
StringSplit, word_array, full_path, `n3 j7 l, a$ j4 n7 X6 J r5 A
; Take the first element from the array( @! d' b- m+ `5 |( j" K
full_path = %word_array1%8 w' {. y6 }/ v; {
; strip to bare address
6 v e2 G: N- e full_path := RegExReplace(full_path, “地址: “, “”)0 i9 _4 K0 k6 @
; Just in case – remove all carriage returns (`r). [+ u. a2 [' p! e* E& N/ y: V9 C
StringReplace, full_path, full_path, `r, , all [5 G8 O: i# X
IfInString full_path, \
/ J2 ~1 c" \2 f6 b {
- v- L, O1 s; M' s Run, cmd /K cd /D “%full_path%”
: z. v0 O; g0 g" j/ z. [ }6 U6 V0 G. A; ?$ E* f' X f" R
else
. b- g @/ W0 c0 P1 p$ U7 q {
6 k8 F. m8 W/ Q Run, cmd /K cd /D “C:\ ”
- U5 ]( Y1 Q& n7 l1 [' f }9 ~. ]6 t+ [/ T8 [6 M: J
}+ B" ]1 S- E$ D! b: M" a; R
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
n8 e5 n' g7 U 这段小代码肯能有两个你需要修改的地方) T) E E- Y3 j9 `
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
/ O. G& O _; E3 v! h5 u8 E 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “0 s8 N9 ?/ y! f" m
|