此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
1 i/ }. ] u/ k r, `. Q 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
& E, D: a: h* A4 s& V' ~3 f& W; _ 方式一:
# a7 D& V$ k9 y5 J' L 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,) _: e& k$ D& o0 T$ n; L
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和0 F/ d+ f. e+ W, u
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。$ g; J& O4 \9 a' F. E' p3 K3 @
方式二:
3 P2 U7 Z0 S" ~* u 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下: Y# \, u6 {% R8 J% s. [, x. R
SetTitleMatchMode RegEx$ H( K; R5 {/ T- `
return9 d* O6 m6 W) c9 s' ~. f
; Stuff to do when Windows Explorer is open3 g) X6 D5 n# U, b+ l; D
;7 v6 b6 ~$ M! s) \! X
#IfWinActive ahk_class ExploreWClass|CabinetWClass0 {* n. J* @+ t+ t5 u( J/ B9 t
; open ‘cmd’ in the current directory
) o' @) \, }0 h) A ;
7 @/ L% i! o. o& Y: X, o #c::9 b/ d7 f3 A- \# I. M. H) P
OpenCmdInCurrent()( m+ j% h. W3 }- X% n
return, p$ v! c* V7 {+ p
#IfWinActive. B1 g- M* E$ r4 Z! m
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.' g! ?/ y) b( g8 w8 ], k
; Note: expecting to be run when the active window is Explorer.6 H3 C ? a. [9 q7 B. A. Q, T4 D- f5 w
;
5 w1 B. k' U; k$ A+ J/ l; L OpenCmdInCurrent()5 p0 [# [3 \4 h# V3 l/ [' p/ D: @$ ]
{
/ ^0 ^' {+ ^8 k) i ; This is required to get the full path of the file from the address bar
- L" X- b( i# K9 t WinGetText, full_path, A% ]! Z# P# B3 j- j4 [2 f1 D, R5 I
; Split on newline (`n)
4 G! A b1 X2 i StringSplit, word_array, full_path, `n
' k# ?% K5 z- ^$ V1 E; v# Y( J ; Take the first element from the array
2 x3 v0 e$ W, N s% R+ D full_path = %word_array1%
) x/ S) P/ x" H# w ; strip to bare address
6 j' _$ C/ o# o% k. x" h full_path := RegExReplace(full_path, “地址: “, “”)
; |# J; v; c* r, E# Q3 N% Q ; Just in case – remove all carriage returns (`r)3 V/ k) {$ n9 g6 s- J; }" ]& L1 M+ r$ j% b
StringReplace, full_path, full_path, `r, , all1 I7 e& e) v; M e& S8 O0 Z0 Z( ?
IfInString full_path, \0 O( A' U, v. L/ g' W2 x
{
- ?, |2 u: G! ]) _ Run, cmd /K cd /D “%full_path%”
4 k4 k: u1 S; A) B }
+ W* z. u- M, O" Q C else
8 T! N! u9 `( M {4 k) g) {( Q! \9 `( {' O& E/ ]
Run, cmd /K cd /D “C:\ ”
9 Y: |. Y% ~- j( k$ W% Z7 Z }4 I' x4 e( [# A
}) ?% D# w2 M e1 W& D3 w w. v: @: i" C
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。. h% o8 v4 h( a) L+ M
这段小代码肯能有两个你需要修改的地方
" T* y$ B S' b+ x& e: ` 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
. v5 v6 y6 x9 k3 Y# P$ d 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
( ]! k @+ |3 Q$ V3 W |