电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
$ Z2 J3 s5 P& S5 |# J2 S" c  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
3 C% M+ Q1 C; b* |  方式一:
/ d2 G( u8 F9 }  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,% t& T6 q3 Y$ ~1 b
  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
9 x1 z/ _7 a1 L  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。, G( Q" t$ C! O6 b; z) {% n0 e4 E
  方式二:; Q# f8 i# j3 W6 _6 \0 P
  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
. U: Y0 A  U, t/ Y) U  P6 s3 e  SetTitleMatchMode RegEx
& I! \. @' h! d  return
- l1 i( B4 f8 M  Z# N  ; Stuff to do when Windows Explorer is open8 q4 \+ \7 I' @6 ^" v% v% c
  ;
6 w" @7 Z1 X3 Z) t+ c- j) ^  #IfWinActive ahk_class ExploreWClass|CabinetWClass
1 E' g, z: d4 X& @% N  ; open ‘cmd’ in the current directory
- j* d* h; s: D3 o+ d  ;7 {, t! r4 U5 T
  #c::. D: a, i2 _' j4 K
  OpenCmdInCurrent()
$ b- `# a& W. U; R( p' Z- y7 j) C- |# {  return
# B9 p2 N7 F) W# Z; r& f8 D  #IfWinActive# e) u4 S- t& Z
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
3 l8 E0 E; \' ?! D  ; Note: expecting to be run when the active window is Explorer.4 s$ P( b( {2 L% E) z  l5 c
  ;$ j7 G0 U- ]  a  n8 }
  OpenCmdInCurrent()$ r1 G& R! g. D6 [! M& d
  {
  m$ M) |6 X; L" x6 ?/ B/ P5 r& D  ; This is required to get the full path of the file from the address bar& r" b; m% B7 M+ W% b0 h+ `
  WinGetText, full_path, A
+ q% e% D6 S# H3 P6 j6 D0 u  ; Split on newline (`n)
& s6 K6 q1 s7 S% Q  StringSplit, word_array, full_path, `n  w) q* ^; ^# ?1 ?& @: e
  ; Take the first element from the array7 [# i3 d* m; ?4 H( C) |% i/ N
  full_path = %word_array1%6 I" @# v; L/ j9 @! h: c, N
  ; strip to bare address
6 s. l/ L6 h: i+ k1 A  full_path := RegExReplace(full_path, “地址: “, “”)
3 u3 L+ g" h) l  ; Just in case – remove all carriage returns (`r)
2 n; R  V. H4 L  StringReplace, full_path, full_path, `r, , all# ~- N1 M. K4 W1 b* k3 c9 H
  IfInString full_path, \- |. Z5 ~) ^) K# T1 S, ~
  {: t, _# _2 g7 m; F$ ?4 Z
  Run, cmd /K cd /D “%full_path%”" ?' G8 }- V4 _' c
  }
8 s5 q' j, o4 E) B  else
/ I. \4 w6 Q& V. q  {
4 |# d) \' z+ T3 t  Run, cmd /K cd /D “C:\ ”2 q% W' r$ q% P
  }
6 E- V+ x! H0 D+ s  }
  v- Z( P5 @: }& A: U; U  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
' a$ r  a+ B5 F$ Y( ~/ I  这段小代码肯能有两个你需要修改的地方% Q  d! ~+ X& N* S
  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键. E  B( g2 K6 i3 n2 r) g8 M+ _
  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “3 l' e+ y. p5 l) e( e8 H' A% M
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2026-8-26 04:05 , Processed in 0.063532 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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