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
It's simple: just differentiate them with && signs. Example:
&&
echo "Hello World" && echo "GoodBye World".
"Goodbye World" will be printed after "Hello World".