I want to run two commands in a Windows CMD console.
In Linux I would do it like this
touch thisfile ; ls -lstrh
How is it done on
You can use & to run commands one after another. Example: c:\dir & vim myFile.txt
c:\dir & vim myFile.txt