Differences

This shows you the differences between the selected revisions of the page.

scripting 2025-01-26 scripting 2025-01-26 (current)
Line 10: Line 10:
&screenshotpict(scripting) &screenshotpict(scripting)
 +===== [[using_scripting]] Using Scripting =====
 +Enter the console/scripting mode by using ''[[executables|winscp.com]]''; or ''/console'' command-line parameter with ''[[executables|winscp.exe]]''. For details see [[commandline#scripting|console/scripting command-line parameters]].
 +For automation, commands can be read from a script file specified by ''/script'' switch, passed from the command-line using the ''/command'' switch, or read from standard input of ''winscp.com''.
 +The script file must use UTF-8 or UTF-16 (with BOM) encoding.
 +When running commands specified using ''/script'' or ''/command'', batch mode is used implicitly and overwrite confirmations are turned off. In an interactive scripting mode, the user is prompted in the same way as in GUI mode. To force batch mode (all prompts are automatically answered negatively) use the command ''[[scriptcommand_option#batch|option batch abort]]''. For batch mode it is recommended to turn off confirmations using ''[[scriptcommand_option#confirm|option confirm off]]'' to allow overwrites (otherwise the [[ui_overwrite|overwrite confirmation prompt]] would be answered negatively, making overwrites impossible).
 +Multiple sessions can be opened simultaneously. Use the ''[[scriptcommand_session|session]]'' command to switch between them.
 +Note that the first connection to an SSH server requires [[#hostkey|verification of the host key]].
 +Also the first connection to FTPS or WebDAVS host with [[tls#certificate|certificate]] signed by untrusted authority requires verification of the certificate.
 +~~AD~~
 +===== [[result]] Checking Results =====
 +WinSCP [[executables]] return exit code 1 when any command is interrupted due to an error or any prompt is answered //Abort// (even automatically in batch mode). Otherwise it returns the exit code 0.
 +To further analyze results of scripted operations, you will find [[logging_xml|XML logging]] useful.
 +
 +//For more details, refer to [[faq_script_result|*]]//
 +
 +
 +===== [[syntax]] Commands Syntax =====
 +All WinSCP commands have syntax:
 +<code>
 +command -switch -switch2 parameter1 parameter2 ... parametern
 +</code>
 +
 +==== [[quotes]] Command Parameters with Spaces ====
 +
 +Command parameters that include space(s) have to be surrounded by double-quotes. To use double-quote literally, double it:
 +<code winscp>
 +put "file with spaces and ""quotes"".html"
 +</code>
 +
 +Note that when you are specifying commands on [[commandline#scripting|command-line]] using ''/command'', you need to surround each command by double-quote and [[commandline#syntax|escape the in-command double-quotes by doubling them]].
 +
 +To debug the quoting, enable session logging on level //Debug 1// (''[[commandline#logging|/loglevel=1]]''). The log will show how WinSCP understands both your command-line and individual scripting commands.

Last modified: by 174.229.180.93