Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am so sure answer is as simple as passing "" to the arguments in batch file. But this fails. Here is what I am trying to do.

Test.bat env "Some cmd"

This "Some cmd" is another command that needs to run in environment set by env.

Test.bat:

Something like  set Env with %1%

set cmd=%2%

%cmd%

The above fails with '"Some cmd"' is not recognized as a cmd.

Only way I can get this to work is if I use "%cmd%" in batch file. Is this right?

share|improve this question
1  
after asking 10 questions, you should have learned to format your questions properly by now. – stillstanding Nov 30 '10 at 19:55

1 Answer

up vote 0 down vote accepted

I think you need to specify path where "Some cmd" is present.

share|improve this answer
Once my envioronment loads, "Some cmd" is recognized automatically.(Environment takes care of setting the %apth%). – user393148 Nov 30 '10 at 20:13
Sorry that is %path%. – user393148 Nov 30 '10 at 20:14
Instead of using %2%, try only %2. i.e. remove trailing % – Shekhar Nov 30 '10 at 20:17
I passed args as Test.bat env "Some cmd" – user393148 Nov 30 '10 at 20:49
set cmd=%2 and calle command with %cmd% and I still get the same ;"Some cmd"' is not recognized as a cmd message. – user393148 Nov 30 '10 at 20:50
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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