How to specify multiple startup tasks in Conemu

command lineconemu

How can I specify multiple startup tasks in Conemu? I want to have each task in a separate tab opened on startup.
Something like:

ConEmu64.exe /cmdlist {Powershell}|{FAR}|{VSConsole}

Unfortunately, this command does not support "console scripts" ("Console script are not supported here").

I know, I can create another task, combining the commands of my desired tasks (full commands, because task command does not support console scripts). Is there any other way ?

Best Answer

The idea of /cmdlist was giving to user ability of starting several commands without creating exact named task. Say, this is an extra "unnamed" task, nothing more. Actually, it was created for simplifying debugging process without need of task creation ;)

The task, by-turn, is a "script" where user can show what command (Tab or Pane) must become active after startup. If you run several tasks at once - what command of what task must become active? Incomprehensible... Also, there may be a risk of infinite recursive task calling.

Related Question