电脑互动吧

 找回密码
 注册
查看: 6578|回复: 0

Windows下更高效的打开你的命令行

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
+ ?4 Q& z. ^/ e  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
& Z& {( @' Q* X' D  方式一:! c) x, k7 G5 M' z$ l# |& b8 z4 B
  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
2 b/ h% L# h( o# ]& ]' z4 J6 i  i  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和5 e: u' {5 O0 O; [0 ~( x0 I
  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
. `8 n4 Y# @! S# a5 \  方式二:
7 i9 ~* B( h1 v$ j# F  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
, a. ?# c: }* `* n9 k  SetTitleMatchMode RegEx
+ I  X2 \5 ^6 X: t9 c% N9 B8 v  return6 _4 n% K' S9 u7 P) Z! \6 @, k. t
  ; Stuff to do when Windows Explorer is open6 m* N. n" Q: V* y. j7 ]+ u# s
  ;# o! V( t: H! E5 }( Q$ B
  #IfWinActive ahk_class ExploreWClass|CabinetWClass/ A" ~& u, L" g2 b! b: x5 Y9 y4 f" `
  ; open ‘cmd’ in the current directory& s3 L8 X- E$ k& j3 ~3 ~2 s
  ;( v) f' I  J/ }1 a+ ]- H
  #c::
# W: Q( P, S! P4 S# ]; h  OpenCmdInCurrent()
" h7 ^- d4 k2 V& A/ W- {- c  return
7 @) o' }/ {8 V, T' L  #IfWinActive1 Q+ d5 b4 G8 b) \; Y& y
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
0 w! W' x$ o) k2 L" D+ [3 |  ; Note: expecting to be run when the active window is Explorer.; t8 M8 q& |" H+ I6 H: a% l4 e$ |& d
  ;9 f8 K$ r- q2 J7 d& W7 D* S: i) V" T
  OpenCmdInCurrent()
/ n* W) c8 f6 @" n1 a( x  {' _; n7 B, l+ s4 k+ }8 E
  ; This is required to get the full path of the file from the address bar. K% F7 s# q7 k+ \1 q
  WinGetText, full_path, A# y8 Q, {/ x: e+ O) }: Q3 f
  ; Split on newline (`n)
8 r0 Z& C6 V- D  StringSplit, word_array, full_path, `n
2 D, ^( y! V% w  ; Take the first element from the array2 {- G/ Y* b, A" s2 b
  full_path = %word_array1%: ~& W! b1 q5 T4 }4 s. }
  ; strip to bare address8 d3 F+ Y" `6 B$ w# r) [
  full_path := RegExReplace(full_path, “地址: “, “”)7 {5 ^  J8 a  T* u. \/ q4 K, d9 [, L
  ; Just in case – remove all carriage returns (`r)5 u8 A3 Q9 c# _, Y, Y
  StringReplace, full_path, full_path, `r, , all
' W, n9 o- a, O+ l+ B  IfInString full_path, \
# A" {2 j3 f1 O+ c4 J, Q  {# p4 H; R' S4 a4 S$ h3 w
  Run, cmd /K cd /D “%full_path%”
8 |9 |5 B5 Z! F+ _, {! t$ T  }. K% e. e; t& u- ~: S$ L: C
  else& h7 c$ }- k; x% C
  {4 m3 K9 t5 w  T- d6 a( f) H! |
  Run, cmd /K cd /D “C:\ ”
3 B/ i% D+ r2 T# x; `/ y7 M  }: F) {0 T' m; O
  }
5 z. l$ A4 H- M6 M" E+ E  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。3 e# W" Q% B0 ^5 n0 D6 ?
  这段小代码肯能有两个你需要修改的地方* b) J" P: H  u/ U+ D
  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键+ c' L! n# R4 H! f
  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
( R( K* U" s6 i4 X" f
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系我们|手机版|小黑屋|Archiver|电脑互动吧 ( 浙ICP备13037409号 )

浙公网安备 33032402001025号

GMT+8, 2026-4-18 07:28 , Processed in 0.070608 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表