I know it seems this has been asked before, but I need a batch to open another batch in a new window. I\'ve tried:
start abc.bat cmd abc.bat run abc.bat >
To simply do it is just
start cmd /c "exampleexample.bat"
This could also work with spaces;
start cmd /c "example example.bat"
And directories.
start cmd /c "C:\NAME\Example\Hi there\example example.bat"
I created my universal batch with this and this works flawlessly.