How, from a cmd, start a new cmd instance and run a command within?

Solution 1:

Create a batch file:

start cmd.exe /c <first command>
start cmd.exe /c <second command>

Run the batch file and it will open the two cmd windows and the batch file will exit.