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

bloodlessz

I find the problem. 8)

To Task Scheduler i fill the area Start in.

At the first i assumed that is not mandatory because i give the full path of the bat file.

Now it is wotking.

Thank you
martin

Re: Scheduler Task does not work

Please post a log file for both scenarios.
bloodlessz

Scheduler Task does not work

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