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: Script not workin..but im probably doing it wrong

So does it work or not?
wicked

Script not workin..but im probably doing it wrong

# 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!