This guide contains simplified description of automating operations on FTP/SFTP server with WinSCP. You may want to see detailed documentation of the scripting functionality instead.
WinSCP offers scripting interface that you can use to automate many operations that it supports, including file transfers, synchronization and other operations.
There is also WinSCP .NET assembly build on top of the scripting interface. If you plan to call WinSCP from your .NET code, or if your task requires conditional processing, loops or other control structures, you should better use the .NET assembly. This guide focuses on simple automation tasks using scripting interface only.
Before starting you should:
To automate operation, you need to find out commands necessary to implement it. For simple operations you need at least to:
option batch abort and option confirm off.open command.put command. For downloads use get command. For synchronization use synchronize command. For other operations, see supported commands.exit command.Assemble the commands into a script file. You can name the script file as you like. See simple example and some useful scripts.
Use the /script command line option to pass the script to the WinSCP executable. You can embed the complete command line into a Windows batch file (.bat), like as follows:
@echo off winscp.com /script=myscript.txt
Now to make using script easier/automatic you can:
.bat) or enter full command line to shortcut itself.c:\documents and settings\username\sendto).When connecting to SSH host, you will need to accept its host key.
When connecting to FTPS host with certificate signed by untrusted authority you will need to verify the certificate.
You may want to modify the script automatically. For example you may want to operate it with different file each time.
For tasks involving more complex modifications, conditional processing, loops or other control structures, you should better use the WinSCP .NET assembly.
For simple modifications, you can pass the variable parts of the script from command line:
option batch abort option confirm off open mysession put %1% exit
Execute the above script using syntax:
winscp.com /script=script.tmp /parameter c:\myfile.txt
You can also use environment variables in the script.
Alternatively, you can generate new script file each time. To automate that, make a wrapper script file. For simple tasks you can use built-in Windows scripting functionality from batch file (.bat). For complex tasks, you will need to use some scripting language, such JavaScript or VBScript from Windows script host or PHP or Perl.
Following example shows batch file that takes filename on command line and generates WinSCP script file to upload that file to remote server:
rem Generate temporary script to upload %1 echo option batch abort > script.tmp echo option confirm off >> script.tmp echo open mysession >> script.tmp echo put %1 >> script.tmp echo exit >> script.tmp rem Execute script winscp.com /script=script.tmp rem Delete temporary script del script.tmp
Now you can run the batch file like (supposing you have saved it to file upload.bat):
upload.bat c:\myfile.txt
See more hints on using parameterised batch file.
See guide to advanced scripting for examples of script generation using more powerful languages.
To check results of the script you can:
/xmllog.Once you find out what was the result of the script, you can perform any action you like. E.g. after evaluating exit code of WinSCP, you can send a “success” or “error” email. For that use any command-line email client you like, e.g. sendmail:
winscp.com /script=example.txt if errorlevel 1 goto error echo Success sendmail.exe -t < success_mail.txt goto end :error echo Error! sendmail.exe -t < error_mail.txt :end
Where for example content of success_mail.txt may be:
From: script@example.com To: me@example.com Subject: Success The files were uploaded successfully.
See guide to advanced scripting for examples of checking script results (including XML log parsing) using more powerful languages and guide to interpreting XML log for advanced scripting using C# language.
See example in scripting documentation.
Site design by Black Gate