This is an old revision of the document!
Scripting and Task Automation
Advertisement
In addition to graphical interface, WinSCP offers scripting/console interface with many commands. The commands can be typed in interactively, or read from script file or another source.
- Using Scripting
- Commands Syntax
- Verifying the Host Key or Certificate in Script
- Running a Script under a Different Account (e.g., Using a Scheduler)
Using Scripting
See command-line parameters to learn how to enter the console/scripting mode.
For automation, commands can be read from a script file specified by /script
switch, from standard input or passed from the command-line using the /command
switch.
By default an interactive mode is used (the user is prompted in the same way as in GUI mode). To switch to a batch mode (all prompts are automatically answered negatively) use the command option batch abort
. For the batch mode it is recommended to turn off confirmations using option confirm off
to allow overwrites (otherwise the overwrite confirmation prompt would be answered negatively, making overwrites impossible).
Multiple sessions can be opened simultaneously. Use the session
command to switch between them.
Note that the first connection to an SSH server requires verification of the host key. Also the first connection to FTPS host with certificate signed by untrusted authority requires verification of the certificate.
Advertisement
Commands Syntax
All WinSCP commands have syntax:
command -switch -switch2 parameter1 parameter2 ... parametern
Command parameters that include space(s) have to be enclosed in double-quotes. To use double-quote literally, double it:
put "file with spaces and ""quotes"".html"
You can use environment variables in the commands, with syntax %NAME%
1:
put "%FILE_TO_UPLOAD%"
You can reference script arguments (passed on command-line using parameter /parameter
) using syntax %N%
, where N
is ordinal number of argument1:
put "%1%"
Note that WinSCP treats filenames in case sensitive manner. So even if your server treats filenames in case insensitive manner, make sure you specify case properly2.
Verifying the Host Key or Certificate in Script
The first connection to an SSH server requires verification of the host key. To automate the verification in script, use hostkey
switch of open
command to accept the expected hostkey automatically.
You can find the key fingerprint on Server and Protocol Information Dialog. You can also copy the key fingerprint to clipboard from the confirmation prompt on the first (interactive) connection using Copy Key button.
FTPS certificate signed by untrusted authority may also need to be verified. To automate the verification in script, use certificate
switch of open
command to accept the expected certificate automatically.
Running a Script under a Different Account (e.g., Using a Scheduler)
If you are going to run the script under a different account (for example using the Windows scheduler), don’t forget that WinSCP still needs to access its configuration. Note that when using registry as configuration storage, the settings are accessible only for your Windows account, so in such a case you may need to either transfer the configuration from your account registry to the other account’s registry or use the INI file instead.
Note that the configuration also includes verified SSH host keys.