此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
4 e; L, O! N5 ~2 y, s0 V 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
- P" j. t X. e7 \) t 方式一:
; h+ @ _: j, G5 S$ l& Q0 P1 I% Y8 O 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
" v' L2 b4 E l4 ]6 M+ g 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
* a7 @/ q0 L( W HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
4 `6 X+ c; }" J# L8 @& g 方式二:4 R0 F. ^7 P$ {7 \! N' I2 l% l J
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
2 u( H1 b8 j& |8 j/ k6 x SetTitleMatchMode RegEx
# e2 c- Y( @ F# h7 ^ return% H9 Q! Y3 y$ U+ l8 ~; {& F
; Stuff to do when Windows Explorer is open% I7 q- h/ K% S. @
;- [, _. e% u; L; e/ j4 D* `% {
#IfWinActive ahk_class ExploreWClass|CabinetWClass, F" c7 s/ A2 R A8 W4 ?; n0 o/ F U5 u
; open ‘cmd’ in the current directory
& @4 K* V4 J( J4 C$ h* x ;
* e: \$ f" g# ]1 f+ o8 k #c::$ |) M0 B z8 Q1 ]
OpenCmdInCurrent()/ r* x$ R: \& b+ s/ Y1 J7 S1 W \
return
! B( U0 B) \6 { #IfWinActive
1 G' f8 m' p: T4 n9 M2 ? ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
9 X t8 _) A- X7 X' o# G ; Note: expecting to be run when the active window is Explorer.
& a9 _7 o0 a- ?$ w, b ;
% @- o8 t* T/ y- \- U2 Z" U; R. R2 N* I OpenCmdInCurrent()
; [( H) o3 Y- b {
# x9 p. d0 d5 Y' L% h ; This is required to get the full path of the file from the address bar
+ u- {: b$ h* a3 S2 M WinGetText, full_path, A
) `2 W5 \! w. A/ ]( b( o e: s ; Split on newline (`n)6 y6 z; C3 _- ~" f( j
StringSplit, word_array, full_path, `n1 g1 _$ T6 X% ?( [
; Take the first element from the array
3 V: w4 J& M$ J& @ full_path = %word_array1%
# M0 _% D$ {9 G, y9 x ; strip to bare address" q3 M+ x: b) T. `0 f+ U
full_path := RegExReplace(full_path, “地址: “, “”): @, B/ a2 Y2 L* g! L' }
; Just in case – remove all carriage returns (`r)
, w8 E& Q* x' A" `% D: B StringReplace, full_path, full_path, `r, , all
# l2 ?( c7 d0 t3 l! _4 b7 z Y5 d% t IfInString full_path, \' w7 f8 G7 }- Y# x% X& d
{
* z% }3 [3 e4 V! f; b+ z7 ]: x8 F Run, cmd /K cd /D “%full_path%”% `2 i, N! j1 w2 y( v8 H/ ?9 l0 [
}
: j e+ b- `. e else' V0 z0 F$ x$ t3 |7 b) a
{1 V: [5 P3 p8 a3 Q" W5 y9 f3 O( n
Run, cmd /K cd /D “C:\ ”+ ?: K) \3 g0 }: |- l
}. o h! w; [0 P8 l5 n. q% C7 O# V
}- q! e$ y) _ A7 E& y* @
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
3 t t. y. U7 o. i! v% N 这段小代码肯能有两个你需要修改的地方
* o" _, J) M: X5 J 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键1 ^! J/ {& a* m' k! ~7 |' u
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “! f) t5 x" { D
|