此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。. y J0 `' f# J5 R$ j2 _' h8 a$ w
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
8 Y- Z( ~3 E. z& k# s3 [ 方式一:
9 p* O$ _5 c1 n7 k% @: B 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
4 U# \ O" h* k' t8 K5 A/ S6 z 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
& s1 y2 H$ Y$ O- @/ e8 v( N) H HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
/ c# P: _! E% b6 c" `1 y 方式二:1 b7 q8 {/ n- P: ^* @
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
# G0 j5 l! {% k* Y9 b6 k! ` SetTitleMatchMode RegEx0 H7 c$ F# |: S
return
9 D+ d# `" x% ^: } ; Stuff to do when Windows Explorer is open& d: h0 e1 i1 y2 x) s4 H7 x
; ^! o2 a1 C/ ^* N( Y0 n. p
#IfWinActive ahk_class ExploreWClass|CabinetWClass! o7 w, Z6 _: w9 ~1 @
; open ‘cmd’ in the current directory5 N+ U) {- C8 U7 n; H$ t
;4 ]+ T, @ G l
#c::0 S* V( B+ r. N1 E
OpenCmdInCurrent()
- [3 v- \7 o. e* t2 z. U3 C1 T5 ` return
3 F4 S2 p' ]) Z" m) k #IfWinActive
- y/ m) e/ F8 `7 M( L( [ ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.8 @6 {/ P. j& n) F
; Note: expecting to be run when the active window is Explorer.0 O* C$ b, G6 X1 j. G
;# x- u! Q: a3 K
OpenCmdInCurrent()
. [3 b+ X9 O% X8 b0 u {
2 w' p1 L2 e" d' F9 y/ i ; This is required to get the full path of the file from the address bar: ~7 p& ?2 F' r( t1 z
WinGetText, full_path, A8 e- \* f4 T/ r) Y" W
; Split on newline (`n)- d: S; U& g5 L! [# F! r
StringSplit, word_array, full_path, `n# G5 {$ _, U' e
; Take the first element from the array
$ f/ }# D& j/ q& n3 y) X full_path = %word_array1%% W) d1 i+ s) O, U- G, p6 d+ k
; strip to bare address) F8 E7 k/ R$ t* W9 ^3 _* H( i# q
full_path := RegExReplace(full_path, “地址: “, “”)8 j0 p2 b# i. \5 B( v4 Q5 c
; Just in case – remove all carriage returns (`r)
9 Q, A0 _+ N( ^7 F0 p9 b StringReplace, full_path, full_path, `r, , all4 J+ `$ ^: n7 [' O- ]2 P' `/ ?* e* e$ h* C
IfInString full_path, \5 e1 J* W. r. H# ?
{
. Z: k0 ~ Q9 W* p# y Run, cmd /K cd /D “%full_path%”3 v4 T$ P, ^8 R f, ^
}/ n8 N. t8 ~, i
else+ J4 A6 C, w+ z
{
7 `: G* L2 V1 _7 L$ j8 U2 X- H Run, cmd /K cd /D “C:\ ”
. ]! Z% {' k; r7 ? }3 q8 M" p+ ]4 j- M3 @: N
}
4 `# y1 |4 i3 t+ |! t* A 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。4 o9 B; ^& z/ s. ?: ]
这段小代码肯能有两个你需要修改的地方
" X2 u) k: j9 `8 C! n 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
- v1 `, s# M' E# G* Z 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “/ z0 `( b2 h6 c/ s6 Q
|