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
Yes there is. It's &.
&
&& will execute command 2 when command 1 is complete providing it didn't fail.
&&
& will execute regardless.