up vote 8 down vote favorite
3
share [g+] share [fb]

I need to create a batch file which starts multiple console applications in a Windows .cmd file. This can be done using the start command.

However, the command has a path in it. I also need to pass paramaters which have spaces as well. How to do this?

E.g. batch file

start "c:\path with spaces\app.exe" param1 "param with spaces"
link|improve this question
feedback

4 Answers

up vote 19 down vote accepted

Actually, his example won't work (although at first I thought that it would, too). Based on the help for the Start command, the first parameter is the name of the newly created Command Prompt window, and the second and third should be the path to the application and its parameters, respectively. If you add another "" before path to the app, it should work (at least it did for me). Use something like this:

start "" "c:\path with spaces\app.exe" param1 "param with spaces"

You can change the first argument to be whatever you want the title of the new command prompt to be. If it's a Windows app that is created, then the command prompt won't be displayed, and the title won't matter.

link|improve this answer
Thanks, this helped. I didn't realize the window title was mandatory. – Tim Sep 16 '08 at 14:30
1  
You save me hours of troubles... – tmow Jan 21 '11 at 8:51
It seems the window title is mandatory though there is lots of documentation on the internet stating otherwise. Ignore that documentation. Follow Andy's suggestion. – Corin Aug 22 '11 at 19:22
Corin, the first quoted argument is used as the window title. If you want to quote something else you have to supply a window title. Not nice, but sooner or later you just know about it. – Joey Dec 28 '11 at 0:08
feedback

Escaping the path with apostrophes is correct, but the start command takes a parameter containing the title of the new window. This parameter is detected by the surrounding apostrophes, so your application is not executed.

Try something like this:

start "Dummy Title" "c:\path with spaces\app.exe" param1 "param with spaces"

link|improve this answer
feedback

You are to use something like this:

start /d C:\Windows\System32\calc.exe

start /d "C:\Program Files\Mozilla

Firefox" firefox.exe start /d

"C:\Program Files\Microsoft

Office\Office12" EXCEL.EXE

Also I advice you to use special batch files editor - Dr.Batcher

link|improve this answer
feedback

Surrounding the path and the argument with spaces inside quotes as in your example should do. The command may need to handle the quotes when the parameters are passed to it, but it usually is not a big deal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown