电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
! _! s! x! p1 @1 C6 L7 X9 U: f  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
7 s" U  s3 z( V' A  q  方式一:
3 T) _2 ~5 i- P" a; J  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,+ X4 n: c$ q- p7 D
  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和3 N7 V& v" |, C8 G, C" g5 J4 K8 A
  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。% d1 h( T) W/ W  ]/ t/ j! T
  方式二:
6 a8 d  i" |" {7 e3 o( A. ~  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:+ A8 j9 t# C5 r( F) ^
  SetTitleMatchMode RegEx
$ W2 O) m4 M3 k  return: @! w" j! @/ r4 W- r2 `
  ; Stuff to do when Windows Explorer is open
7 ^3 y2 W: t7 B( q  ;" `9 T1 Q2 u0 v7 A
  #IfWinActive ahk_class ExploreWClass|CabinetWClass) E5 r$ M+ t7 W. ~7 l  W
  ; open ‘cmd’ in the current directory; t& l. m0 M6 M. C9 |/ o. X
  ;  P( H& I' ^2 M' y3 b
  #c::
( F2 o0 V! B3 f, k7 r- R1 Z2 R  OpenCmdInCurrent()
3 {7 p. W5 S8 [$ S  return8 u5 _! ~3 @, G0 t
  #IfWinActive$ p& ?8 r( p8 C0 G
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.& o) n3 `! h, c) F1 m
  ; Note: expecting to be run when the active window is Explorer.. G" Y! `0 @& v3 R* w$ I
  ;6 {/ ^. P& N. U% K
  OpenCmdInCurrent()
' j" L- F1 N. R# S  {
  L6 U, Y( i8 q  X8 K8 ?  ; This is required to get the full path of the file from the address bar9 C" b2 @1 |) q  I8 I" a& A
  WinGetText, full_path, A
5 a" q* S8 w2 p  ; Split on newline (`n)
3 F# O# n) ^3 ?; o  x0 m' n  StringSplit, word_array, full_path, `n
3 x0 [$ n0 G0 i  ; Take the first element from the array! n7 }6 e9 H; |. M
  full_path = %word_array1%
1 q- K5 j' a% Z* D$ F- ?  V! v  ; strip to bare address
9 x+ B) _  k* P* B( P  full_path := RegExReplace(full_path, “地址: “, “”)
2 T& y6 F4 F$ |9 n; X1 q- K  ; Just in case – remove all carriage returns (`r)" D+ a$ q# N, t2 _* H
  StringReplace, full_path, full_path, `r, , all
% |5 d3 m" f# A* U# b. c% T( i  IfInString full_path, \
7 u! E' p- q$ c1 i  {. |0 X* I( K; t; K
  Run, cmd /K cd /D “%full_path%”+ n8 e, i0 E' S8 j# f+ h
  }& ^% j3 H* L- E' U$ J. Y
  else
) ~; ?0 F) O3 _, H  {
: |& \, G! x' W  Run, cmd /K cd /D “C:\ ”+ i9 b( ]% q( ~5 k) G) z  S
  }  `4 P- c9 R6 p) H7 \
  }
; @3 w( ?% x8 U* j  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。5 R; m% B. ^* C9 e4 L3 i/ Z
  这段小代码肯能有两个你需要修改的地方* W) P/ Y( v7 {( B# w( U
  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
1 Q  x& |5 z2 g9 |2 `9 Y7 l2 [/ o  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
2 v" i# a" x; ~& k! v7 e
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2024-11-26 18:51 , Processed in 0.056477 second(s), 21 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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