此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。! x1 ~0 M1 B: W* |
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
: B7 S0 B; H8 g$ [+ I, N 方式一:" ~8 C# h, S" G& k
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
5 c% i2 \& S* i( T# E 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
$ z h2 ^/ o* P8 c9 z HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。0 e$ ^$ t- t# Q4 R! b
方式二:& o$ o9 ~' v- m8 P! E
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:2 o+ w) P3 Y! U f8 ?
SetTitleMatchMode RegEx7 e. E# D6 Z# V* j/ l5 R
return
" `& \# B; @8 `' r$ l3 j) O2 E: S5 R ; Stuff to do when Windows Explorer is open# d' n1 d f4 S% p
;" \( S7 {4 s |! @7 j
#IfWinActive ahk_class ExploreWClass|CabinetWClass
/ }. |( R, Y1 G ; open ‘cmd’ in the current directory" L+ l. t# h, [8 f; D4 _
;. ^3 y- G1 y4 M/ f7 M
#c::2 a& @8 s9 x4 S* }
OpenCmdInCurrent()
; l* O* r8 j; _) I return' @7 j1 b. S j% ^1 ~
#IfWinActive
( P5 ^/ N% b4 P- D/ C7 y ; Opens the command shell ‘cmd’ in the directory browsed in Explorer." d* P9 P- y& ~( o$ d3 h! k/ N
; Note: expecting to be run when the active window is Explorer.
6 i$ k9 y- Y) R: G& {1 k4 W ;( N; v% d- x; K% q# X
OpenCmdInCurrent()
- t* y: }. p. O+ Z {/ M# R. b9 J* K
; This is required to get the full path of the file from the address bar
( e0 M2 q7 |7 e8 @& z* O ?3 H WinGetText, full_path, A
' ]1 I" j y# ] ; Split on newline (`n)% ~5 a4 ?8 i" n2 ~
StringSplit, word_array, full_path, `n
( M2 o0 F9 J( ` ; Take the first element from the array
; ?' ^$ Q# z) ]- \6 W full_path = %word_array1%
7 a Y% h4 \$ m4 a$ [5 \2 P# C5 y ; strip to bare address
& ]" A, A( Y9 t) R0 R) o+ [ full_path := RegExReplace(full_path, “地址: “, “”)
0 a2 i/ I$ E' m% r$ r7 ` Y ; Just in case – remove all carriage returns (`r)
# [# ~% l6 j( G2 D* y) D StringReplace, full_path, full_path, `r, , all" q. z/ m- G& x3 M$ K) Q% S) ?
IfInString full_path, \
/ C: M A/ m2 g5 G. W6 }' \& e {
1 H) _# I$ K% M- A0 } Run, cmd /K cd /D “%full_path%”
2 T R2 _+ V* X) o% j }
' e6 C! P+ R' {. {. X* h7 r* a( r else* \1 `: U% ?: Y. {; v
{! C. l2 C4 _( L! n
Run, cmd /K cd /D “C:\ ”- }0 r3 J, F) P) ?
}6 d( v+ `9 }% ^/ Q' V! D
}
4 y& I. A7 W; x9 S' g 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
- o/ S r5 |' D8 L) w; u3 R 这段小代码肯能有两个你需要修改的地方# i" s9 N9 Z* k( ^4 l* y
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
$ h! r! N+ `3 ?( t 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “! G8 r3 L* y, E9 v6 O, J+ z
|