I tried to run multi-windows commands inside one opened window from a batch file.
I want the opened command window to perform two things in sequence:
- Switch volume
- Direct to a directory in that volume.
Here's what I wrote:
start cmd /k C: && cd 'C:\Program Files (x86)\aaa\'
However, this only switches volume. The second thing is not executed.
Can anyone please show me the way?