# Automatically answer all prompts negatively not to stall
# the script on errors
option batch on
# Disable overwrite confirmations that conflict with the previous
option confirm off
# Connect
open sftp://username:password@ip address/
# Change remote directory
cd /u/mhs/xml-dumps
# Force binary mode transfer
option transfer binary
# sync from remote to local
synchronize local F:\Local Directoy
# Disconnect
I got it working. I decided against using a script and just added it to the command line. I was missing some "" :)
close
# Exit WinSCP
exit
I want the files that are on the server to synch to my local F:\
I have setup a scheduled task on the server for a daily pull. The command I am using is "C:\Program Files\WinSCP\WinSCP.exe /script C:\Scripts\myscript.txt"
Any idea what I am doing wrong? Thanks!