How to assign any bat file with ConEmu to window registery?
I read few suggestions at: Running Bat file with ConEmu
Here few suggestion:
[HKEY_CLASSES_ROOT\batfile\shell\open\command]
@="\"C:\\Program Files\\Far Manager\\ConEmu.exe\" /cmd \"%1\" %*"
"C:\Program Files\ConEmu\ConEmu64.exe" "%1"
"C:\Program Files\ConEmu\ConEmu64.exe" "-Reuse" "/cmd" "%1 %*"
However, last comment point out that:
last argument be outside the doublequote as seen on registry:
[HKEY_CLASSES_ROOT\batfile\shell\open\command]"%1" %*
It seem all suggestion put all arguments with doublequote. With provided suggestion above, can anyone confirm last argument be outside of doublequote?