не могу добавить cmd в контекстное меню windows 10

Есть скрипт OpenCmd.reg:

Windows Registry Editor Version 5.00
; Open files
; Default cmd Location C:\Windows\SysWOW64\cmd.exe

[HKEY_CLASSES_ROOT\*\shell\Open cmd]
@="Open cmd"
"Icon"="C:\\Windows\\SysWOW64\\cmd.exe"

[HKEY_CLASSES_ROOT\*\shell\Open cmd\command]
@="\"C:\\Windows\\SysWOW64\\cmd.exe\" \"--cd=%1\""

; This will make it appear when you right click ON a folder
; The "Icon" line can be removed if you don't want the icon to appear

[HKEY_CLASSES_ROOT\Directory\shell\bash]
@="Open cmd"
"Icon"="C:\\Windows\\SysWOW64\\cmd.exe"


[HKEY_CLASSES_ROOT\Directory\shell\bash\command]
@="\"C:\\Windows\\SysWOW64\\cmd.exe\" \"--cd=%1\""

; This will make it appear when you right click INSIDE a folder
; The "Icon" line can be removed if you don't want the icon to appear

[HKEY_CLASSES_ROOT\Directory\Background\shell\bash]
@="Open cmd"
"Icon"="C:\\Windows\\SysWOW64\\cmd.exe"

[HKEY_CLASSES_ROOT\Directory\Background\shell\bash\command]
@="\"C:\\Windows\\SysWOW64\\cmd.exe\" \"--cd=%v.\""

Аналогичный скрипт есть для git bush
Как сделать чтобы в контекстном меню был и git и cmd?


Ответы (0 шт):