圖形化界面和鼠標點擊操作早已占據主導的如今,微軟仍舊保留命令行模式就證明它還有用武之地,事實上也正是如此,有時候一條命令可以簡化很多步操作。今天小編就給大家講解Windows下如何更高效的打開你的命令行,現在提供兩種方式讓你像在Linux中那樣更高效的在當前目錄打開命令行.
方式一:
在當前目錄按Shift+鼠標右鍵,你就可以看到類似的在此處打開命令行的選項了,如果你想去掉shift,直接按鼠標右鍵就有此選項,那麼你需要用簡單的修改下你的注冊表,
去注冊表位置HKEY_CLASSES_ROOTDirectoryshellcmd下面將Extended鍵值刪掉,如果你還希望驅動器和桌面也能這樣,將HKEY_CLASSES_ROOTDrivershellcmd和
HKEY_CLASSES_ROOTDirectoryBackgroundshellcmd下的Extended鍵值去掉即可.
方式二:
用快捷鍵,當然會用到人見人愛的Autohotkey.其Auothotkey代碼如下:
SetTitleMatchModeRegEx
return
;StufftodowhenWindowsExplorerisopen
;
#IfWinActiveahk_classExploreWClass|CabinetWClass
;open‘cmd’inthecurrentdirectory
;
#c::
OpenCmdInCurrent()
return
#IfWinActive
;Opensthecommandshell‘cmd’inthedirectorybrowsedinExplorer.
;Note:expectingtoberunwhentheactivewindowisExplorer.
;
OpenCmdInCurrent()
{
;Thisisrequiredtogetthefullpathofthefilefromtheaddressbar
WinGetText,full_path,A
;Splitonnewline(`n)
StringSplit,Word_array,full_path,`n
;Takethefirstelementfromthearray