This command works
START /b /wait "Dummy title" "C:\tmp\test runner2.bat" arg1 arg2
But both of these fails!
START /b /wait "Dummy title" "C:\tmp\test runner2.bat" arg1 arg2 "arg 3" arg4
START /b /wait "Dummy title" "C:\tmp\test runner2.bat" arg1 arg2 "arg 3"
The error is:
'C:\tmp\test' is not recognized as an internal or external command, operable program or batch file.
Obviously it has something to do with "
surounding the arguments, but why and how do I work around this?
Related questions: