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 trying to use WinExe to execute a command line on a Windows machine. So far I am able to execute a file (sha256sum.exe) and pass parameter like "--help" to it but I am not able to pass any filename with space in it.

Here is how my command line looks like-

./winexe --ostype=2  -U username --password passworsGoesHere //hostIP "cmd /c  \"\"%programfiles%\\MyApp\\tools\\sha256sum.exe\"\" \"c:\1 1.txt\" "

The filename is 1 1.txt under C:\ and output of command is -

The filename, directory name, or volume label syntax is incorrect.

If I execute this-

./winexe --ostype=2  -U username --password passworsGoesHere //hostIP "cmd /c  \"\"%programfiles%\\MyApp\\tools\\sha256sum.exe\"\" --help "

it works.

share|improve this question
use single quote instead of douoble – 2r2w Mar 9 '12 at 11:46
tried, didn't work :( – user837208 Mar 9 '12 at 11:59
./winexe --ostype=2 -U username --password passworsGoesHere //hostIP 'cmd /c "%programfiles%\\MyApp\\tools\\sha256sum.exe c:\\1 1.txt"' i meant this way – 2r2w Mar 9 '12 at 13:41
and you didn't escaped backslash \"c:\1 1.txt\" – 2r2w Mar 9 '12 at 13:42

1 Answer

Try doubling-up your quotation marks as you did for the sha256sum command.

./winexe --ostype=2  -U username --password passworsGoesHere //hostIP "cmd /c  \"\"%programfiles%\\MyApp\\tools\\sha256sum.exe\"\" \"\"c:\1 1.txt\"\" "
share|improve this answer

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.