电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
0 E* R: o- ?6 A  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。* l3 h2 J3 ^: Y
  方式一:
& Z$ P  d: J6 X% I: ]  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,  V9 H  n0 S& c5 r) t5 z
  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
4 {  j0 T9 G7 \- ~  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
5 X" X$ B) |( M/ k' _  方式二:( v3 j  N" A; x6 }
  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:& Z, ^$ v8 c2 Y$ O
  SetTitleMatchMode RegEx) p/ H) ^: |: d* |5 Q8 S4 U
  return# G* I/ A& T, u  n) s
  ; Stuff to do when Windows Explorer is open
5 x# q1 r* ^. p9 x  ;
) D: n. Q9 v, {3 m$ ^# T- ^( ~. |  #IfWinActive ahk_class ExploreWClass|CabinetWClass5 b- R1 `( D3 C
  ; open ‘cmd’ in the current directory6 d+ m. B- o  H5 W
  ;! f/ E& s5 J. H% b' H
  #c::
0 x8 b$ s. z0 o/ G+ Q- b  OpenCmdInCurrent()# I+ J; B9 K: a' b# b% _
  return! d* x- k( d' ^' W) F+ d4 E
  #IfWinActive$ p+ a6 F3 O8 m# r- O" V! z( J
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.+ N- [& z: x7 r5 I) S9 l
  ; Note: expecting to be run when the active window is Explorer.3 f& c. A1 v( V0 w* ?* T9 {
  ;5 c- k9 b  T' Y+ o; ?& }- o
  OpenCmdInCurrent()
( i. D' a. i: J  b  {9 `. U5 p( ]! Z1 h1 m$ B6 R# v
  ; This is required to get the full path of the file from the address bar- m9 K% a, O/ M/ e( ]
  WinGetText, full_path, A! z4 c) G4 X) v2 q# I3 s6 `
  ; Split on newline (`n)
! e* T; t) g6 |0 `! W8 }" ^9 e  StringSplit, word_array, full_path, `n
, y# t" u9 z* [3 F2 V  ; Take the first element from the array
! {6 _& z- Q/ r4 g  full_path = %word_array1%
' S" I. B- ]& ?  H/ |" T% Q1 n  ; strip to bare address) w3 ?  o& S5 o& Q1 a
  full_path := RegExReplace(full_path, “地址: “, “”)1 x, M) z' E6 V$ h. ~1 I
  ; Just in case – remove all carriage returns (`r)( h  |0 Z8 V& o$ s, n+ o
  StringReplace, full_path, full_path, `r, , all
$ z. }- J8 ?; T! K  IfInString full_path, \, x% i# y( G# u; ~0 u) [
  {3 H, V6 ]. v% H, v+ p( _' O- V) v
  Run, cmd /K cd /D “%full_path%”
1 b7 i& R- T" s9 {- y  }. t8 @( N% v7 Y$ U
  else
: _5 N# o; ?8 y$ J" D$ T, q  {
7 e: |* h0 _* p  j, k  Run, cmd /K cd /D “C:\ ”
6 b3 U- ?+ d5 S( x6 n  }
8 I! s6 K8 l% A1 P7 |6 G: H' Q  }
( L4 P4 \/ H- O/ e" m; V  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
' i; L  J( @/ f: ?8 [$ Q4 P! P* _  这段小代码肯能有两个你需要修改的地方- G; g0 Q0 A% g0 K/ {7 p
  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
. l, y" D4 w3 t/ Z  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “. n; J) h' m2 a  w; Y
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2025-12-1 13:03 , Processed in 0.053771 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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