How to open console2 in a specific folder?

With cmd I can do

cmd /K cd /D "c:\repo" 

to open cmd in c: \ repo

How to do the same with console2 when using cmd as a shell?

+6
source share
2 answers

From the command line help:

  -d <directory> Specifies a startup directory. If you want to parametrize startup dirs, you need to specify startup directory parameter as "%1"\ (backslash is outside of the double quotes) 
+18
source

At 2.00b147 go to Edit -> Settings -> Console and enter the desired directory in the Startup dir field.

+8
source

Source: https://habr.com/ru/post/890092/


All Articles