I\'m trying to open a new command window in a BAT file:
start %windir%\\system32\\cmd.exe
After it opens, I\'d like to execute a BAT comman
If I understand you correctly doing this in side your bat file will open Command prompt and print your message to screen.
cmd.exe hello world
hope this helps.