电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。# ^0 f+ T1 V7 j1 m3 e
  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
# }/ v1 Y$ w6 X+ Z* @% T* i1 t  方式一:
/ b/ Z  ]4 d# ~' ]' ]4 }" y; R5 E  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
& e% Q8 x& R1 n* @6 e7 T! z- ^, E- d  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和3 g! F4 j/ H+ ~6 Q
  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
. @  ^- t0 f' N- @3 p5 `1 d  方式二:! ?  k) R$ m; W0 [( [* K
  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:8 e; g* G, s1 A* A; ]' q, T3 J) b
  SetTitleMatchMode RegEx
5 B; L+ v. N" S2 c' F0 v4 U  return9 X! I9 J) @* [. l5 L
  ; Stuff to do when Windows Explorer is open
5 ]% }% L7 U9 l) B  ;- R( f  Y! Q& r7 K
  #IfWinActive ahk_class ExploreWClass|CabinetWClass8 ?' [2 d4 z+ o6 v+ E  D) J
  ; open ‘cmd’ in the current directory, w0 L" E5 D2 I7 Y7 R; M  P# A5 l
  ;
3 f3 O1 ~, [( l- C( l& J  #c::: h# T  Y+ j# a# g8 C
  OpenCmdInCurrent()
* B. T0 Q' a3 Z  return. T# v& ~9 \( u
  #IfWinActive$ J/ M: P  ^* i1 {3 l$ b; K0 A
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer." V' q# P. N! N1 a0 E  k
  ; Note: expecting to be run when the active window is Explorer.& ~+ [7 C4 z$ {5 @0 \: U
  ;
$ O: G# y5 \" @  OpenCmdInCurrent()
! i5 ]5 }0 y" d- ^: T, f  {
" b" [; d$ M2 L3 C  ; This is required to get the full path of the file from the address bar
0 R. F" Z" A# G' V0 c+ ^  WinGetText, full_path, A
# n5 f6 S% y! o  ; Split on newline (`n)+ f( G+ m6 p% |; U% A( `  V
  StringSplit, word_array, full_path, `n4 P4 z/ X, w) w
  ; Take the first element from the array
5 I' [8 P5 Z  r  s8 o  full_path = %word_array1%
% j, e9 {" P$ u& V! B% b5 h  ; strip to bare address
* p3 o# T9 Q$ E) m3 F# D3 e# Z+ h  full_path := RegExReplace(full_path, “地址: “, “”)
0 |  |! b6 k% D: T# x2 h- T  ; Just in case – remove all carriage returns (`r)
1 w& E/ N$ i, }& j3 \2 x, F. ~  StringReplace, full_path, full_path, `r, , all
! [& n4 |; {9 P% p! l+ K  IfInString full_path, \1 M. L# Y* C+ ^5 `% D6 p, `
  {! t8 \3 \% C' M5 M/ A0 ^
  Run, cmd /K cd /D “%full_path%”
( O& a+ T& O0 Q3 @6 M5 o3 \0 A7 Q  q  }8 J& @" t" Y2 E, C* `* C8 e
  else
/ H( O- H/ v2 M! ^$ B! N' g. c  {+ B0 A$ q* b8 ?9 G% i
  Run, cmd /K cd /D “C:\ ”% ^- t9 l, m+ o% @# v
  }
/ @8 O4 b7 H; ^8 Z* v% W: W2 g: W  }) N+ s  `/ L7 g  b
  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
: m$ n. G$ j7 j) K: ^% r- K  这段小代码肯能有两个你需要修改的地方
. L+ m! R2 |( u$ C+ w: M  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
9 x1 @' O; l( s4 Z5 z5 Q7 m; t  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “" w' s) ?% Z. W: h% Y6 M4 [1 H& X
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2026-9-2 10:34 , Processed in 0.058501 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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