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 call to overcome the problem of environment variables being evaluated too soon - e.g.
set A=Hello & call echo %A%