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