vote up 0 vote down star

I'm writing a fairly simply script and I'm trying to upload a file to an ftp server. I'm using the following command

ftp -n -s:upload.txt 292.78.51.12 (I've faked the IP)

It works perfectly in command prompt but it seems to have a problem with it in powershell. I've tried giving the absolute path to upload.txt, put .\ before it and nothing seems to work.

Any idea what I'm doing wrong?

flag

75% accept rate

1 Answer

vote up 1 vote down check

You need to put quotes around "-s:upload.txt". I believe it has something to do with the colon in the option. If anyone could clarify why that would be great.

link|flag
Thanks, works perfectly now – Chris McGrath Sep 23 at 2:25
1  
It appears to be the case in PowerShell v1, though not in v2 (which is why I had a hard time here reproducing that issue -.-). No idea why, though. – Johannes Rössel Sep 23 at 6:44
2  
They changed how they parse/send parameters to native EXEs. In V1, exe sees arg1=-s: arg2=upload.txt. In V2, the exe sees arg1=-s:upload.txt. In V1, quoting the entire argument fixes this issue. – Keith Hill Sep 23 at 15:18

Your Answer

Get an OpenID
or

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