Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inpromotion/daa840580c88716048c982b9dd6dd50d to your computer and use it in GitHub Desktop.
Save inpromotion/daa840580c88716048c982b9dd6dd50d to your computer and use it in GitHub Desktop.
Добавление открытие Bash от подсистемы Ubuntu в контекстном меню в Windows 10. Сохраняем файл с названием Add_Open_Bash_context_menu.reg, аналогично https://yadi.sk/d/H9Bm22AOev0A4w
Windows Registry Editor Version 5.00
; Created by:Shawn Brink
; Created on: August 13th 2016
; Tutorial: http://www.tenforums.com/tutorials/60125-open-bash-window-here-context-menu-add-windows-10-a.html
[HKEY_CLASSES_ROOT\Directory\Background\shell\Bash]
@="Открыть окно Bash здесь"
"Extended"=-
[HKEY_CLASSES_ROOT\Directory\Background\shell\Bash\command]
@="cmd.exe /c pushd \"%V\" && bash.exe"
[HKEY_CLASSES_ROOT\Directory\shell\Bash]
@="Открыть окно Bash здесь"
"Extended"=-
[HKEY_CLASSES_ROOT\Directory\shell\Bash\command]
@="cmd.exe /c pushd \"%V\" && bash.exe"
[HKEY_CLASSES_ROOT\Drive\shell\Bash]
@="Открыть окно Bash здесь"
"Extended"=-
[HKEY_CLASSES_ROOT\Drive\shell\Bash\command]
@="cmd.exe /c pushd \"%V\" && bash.exe"
[HKEY_CLASSES_ROOT\LibraryFolder\Background\shell\Bash]
@="Открыть окно Bash здесь"
"Extended"=-
[HKEY_CLASSES_ROOT\LibraryFolder\Background\shell\Bash\command]
@="cmd.exe /c pushd \"%V\" && bash.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment