Hello guys.
I start using WinSCP and i think it is very useful software.
The only problem i have is when i try to run the script under Scheduler Task.
When i run the bat file by double click it works fine.
The the .ini file is on the WinSCP folder.
The bat and txt files is on WinSCP folder.
Local2remote.bat
winscp.exe /console /script=local2remote.txt /log=C:\Users\myusername\Desktop\log.txt
echo Upload succeeded, moving local files
move \\servername\folder\folder\*.xml \\servername\folder\folder\_folder
move \\servername\folder\folder\*.csv \\servername\folder\folder\_folder
exit
:error
Local2remote.txt
echo Upload failed, keeping local files
# Automatically abort script on errors
option batch abort
# Disable overwrite confirmations that conflict with the previous
option confirm off
# Force binary mode transfer
option transfer binary
# Establish the connection
open username@domain.com
# Change the Local Directory
lcd "\\servername\folder\folder\"
# Change to the correct Remote directory
cd /folder
# List the local files
lls
# List Remote Files
ls
# Upload *.csv
put "*.csv"
put "*.xml"
exit
Can someone tell me why?
Thank you