Multi Commander Support Forum
Multi Commander => Support and Feedback => Topic started by: Teo on December 08, 2015, 12:36:25
-
Hi,
Is it possible to remain command output windows after command execution, i.e. making “cmd /k” as a default?
For example:
- If I type in command: “java -version”, it will be executed in cmd window and window will be closed
- To have cmd window remains I now need to type: “cmd /k java –version”
What I am trying to achieve is to avoid typing “cmd /k” every time I need to leave command window after execution (and it is most of the time).
Thanks
-
You mean if you type a command in the command line field ?
Well no.. If MC does not recognize the command it is sent to windows and windows will launch it.
The command is not sent to cmd.exe or wrapped in a bat script
You can however create alias.. so instead of typing "cmd /k java -version" you can create an alias that translate "r" to "cmd /k" so you then only need to type
"r java -version" and the "r" command will be translated to "cmd /k" before sent to windows.
(Menu > Configuartion > Manage Aliases )
-
Alias works well for me. Thanks for advice.