此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
) O" [$ C: j/ r" i" ~! y9 l 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
5 w# r W- ?" j 方式一:
5 W$ N) U, R1 U 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表, z/ ^8 [" `: b. L$ n
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和& y, v. w* X$ p( D& }( I/ e
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。8 Y; I5 \6 I2 [- L) u
方式二:
0 F/ ^3 T8 e0 e. [ 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:* K3 _* C# Z" T
SetTitleMatchMode RegEx
% r5 H E9 h" K3 t. K9 M$ Z y return
+ `9 U K& V: U- ]4 V4 v ; Stuff to do when Windows Explorer is open
, X h+ m" P) L( Q5 s( V6 f0 \, W ;
( y$ V- o& }5 I0 } #IfWinActive ahk_class ExploreWClass|CabinetWClass& l9 c! z3 N- I8 _3 D) ^6 Z/ O
; open ‘cmd’ in the current directory
/ j5 E! p! R* g- } ;, S4 e( x2 Y K, m Q% O. R
#c::" ]$ r$ A+ I9 A% s, v, m+ K' y
OpenCmdInCurrent()
- l& Q7 p2 S7 I% u w; r2 z8 B return
4 K% J9 y9 ?/ I5 n #IfWinActive
7 W$ X) j3 a% F' i* P ; Opens the command shell ‘cmd’ in the directory browsed in Explorer., i, A7 O# r6 I) h6 [ |2 T$ X; c/ x
; Note: expecting to be run when the active window is Explorer.
: K2 p7 X& w3 C# ~" S ;
- B7 [- p% |; l- X5 J. H/ j OpenCmdInCurrent()
/ s0 ?( _# |3 K7 E$ d' x: R {
- w% G/ l' I4 _1 C) m# N ; This is required to get the full path of the file from the address bar7 q1 ]% H! m) ~% b$ E
WinGetText, full_path, A
6 ?9 _* {/ f( n7 c' e1 E# Y4 u ; Split on newline (`n)
# @. e7 `# S; j3 A; X StringSplit, word_array, full_path, `n
( t1 W. t+ D1 S9 _' F0 s. R/ R3 b ; Take the first element from the array7 y6 d1 Y) b$ T# A; ^# h
full_path = %word_array1%
5 F+ K* y6 I6 h. J" v ; strip to bare address
9 x3 c" B: g9 G- p. y" O" ~0 { full_path := RegExReplace(full_path, “地址: “, “”)
# w, V* v9 h7 t* i ; Just in case – remove all carriage returns (`r)
- L: e/ g* q) d! J8 y/ l V- S StringReplace, full_path, full_path, `r, , all
' J" A) |$ ?" \7 p+ D+ X. O- L$ O6 R IfInString full_path, \
7 X. N" \9 x" `6 m2 S {
: h/ H6 b8 n. F Run, cmd /K cd /D “%full_path%”
# J+ r: E; d- r, g, S }2 [/ h/ {. h. k* Y8 q6 l# h
else5 Z1 g1 `$ o6 b1 ]* S) e' P
{
% s* @% k* J/ T. v9 r Run, cmd /K cd /D “C:\ ”; d! Z* W% Z7 o
}
/ B" H6 L! U) d' J: F, O* R }; g+ S- Z% w& @6 ?- F. u3 ^
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。, t& G5 ~5 W5 G- n
这段小代码肯能有两个你需要修改的地方. n8 [: F8 Y5 o; y
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键+ t, T9 l! m5 V0 M& k) _6 R
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
V( D% z4 T) ?$ T; L |