Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: Unable to Connect to FTPS

Please attach a log file both from scripting and GUI session.
TomTom1980

Unable to Connect to FTPS

Hi,

I have never scripted to a connect to a FTPS Site before however I have many SFTP scripts using WINSCP that work perfectly fine.

I'm trying the following syntax script but I keep getting the error message "SSL\TLS required on the control channel"

If I use the WINSCP UI I can connect immediately so I know it must be my script.

I have been trying for days to get it to work and have opened ports 990 and 989 in case that helps.

Does anyone have any idea what I am doing wrong?

option confirm off

open "ftp://[USERNAME]:[PASSWORD]@[SERVER IP] -explicit -passive
option transfer binary
get *.zip [TARGET]
close
exit