I needed to run the server and client console in a 'split mode'. The first attempt was:
w: && cd "w:\client"
npm run client
cmd -new_console:s
w: && cd "w:\server"
npm run server
In this case, only the first command is run.
Then I tried this approach:
start cmd /k w: && cd "w:\client" && npm run client
start cmd -new_console:s /k w: && cd "w:\server" && npm run server
No results at all.
Maybe someone has already faced such a problem?