As we know that windows, we can create folders with a name contains spaces(Hello World,New Folder,My Programs). In the commandline if we use start c:\Hello World\mygame.exe , it gives error called Hello is not found. it split the word from the space, to avoid this we can use thid start c:\"Hello World"\mygame.exe. my problem is this set x=%cd% (Here cd is "c:\Hello World" ) and we execute mygame.exe using this command "start %cd%\mygame.exe" which gives error of Hello is not found. Anyone knows solution for this?

link|improve this question

20% accept rate
feedback

2 Answers

Instead of putting quotes around just part of the path, put quotes around the entire path. If you do that, you should be fine.

start "%cd%\mygame.exe"

link|improve this answer
@Brad Not working, – shan May 16 '11 at 0:22
@Brad did u try it with your self? – shan May 16 '11 at 0:25
@Brad any solution??? – shan May 16 '11 at 0:40
@shan, Yes, I did try it myself, and it works fine for me. If it isn't working for you, did you make sure that you are setting the variable correctly? – Brad May 16 '11 at 0:49
@Brad Are u working on windows? What is your cd refer to? if the folder names doesn't any space this works, if there is a spaces this is not work – shan May 16 '11 at 1:00
show 4 more comments
feedback

In the set command put quotes around the whole assignment:

set "x=%cd%"

In the start command, use quotes as well:

start "%x%\mygame.exe"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.