Differences
This shows you the differences between the selected revisions of the page.
2025-01-26 | 2025-01-26 | ||
no summary (174.229.180.93) (hidden) (untrusted) | no summary (174.229.180.93) (hidden) (untrusted) | ||
Line 46: | Line 46: | ||
You can have WinSCP [[ui_generateurl|generate a script template for you]]. | You can have WinSCP [[ui_generateurl|generate a script template for you]]. | ||
- | ===== [[example]] Example ===== | ||
- | In the example below, WinSCP connects to ''example.com'' server with account ''user'', downloads file and closes the session. Then it connects to the same server with the account ''user2'' and uploads the file back. | ||
- | <code winscp> | ||
- | # Connect | ||
- | open sftp://user:password@example.com/ -hostkey="ssh-rsa 2048 xxxxxxxxxxx..." | ||
- | # Change remote directory | ||
- | cd /home/user | ||
- | # Download file to the local directory d:\ | ||
- | get examplefile.txt d:\ | ||
- | # Disconnect | ||
- | close | ||
- | # Connect as a different user | ||
- | open sftp://user2:password@example.com/ | ||
- | # Change the remote directory | ||
- | cd /home/user2 | ||
- | # Upload the file to current working directory | ||
- | put d:\examplefile.txt | ||
- | # Disconnect | ||
- | close | ||
- | # Exit WinSCP | ||
- | exit | ||
- | </code> | ||
- | Save the script to the file ''example.txt''. To execute the script file use the following command. | ||
- | <code batch> | ||
- | winscp.com /ini=nul /script=example.txt | ||
- | </code> | ||
- | For simple scripts you can specify all the commands on [[commandline|command-line]] using ''/command'' switch: | ||
- | <code batch> | ||
- | winscp.com /ini=nul /command "open sftp://user:password@example.com/ -hostkey=""ssh-rsa 2048 xxxxxxxxxxx...""" "get examplefile.txt d:\" "exit" | ||
- | </code> | ||
- | |||
- | In Windows batch file, you can use ''^'' to split too long command-line to separate lines by [[wp>Batch_file#Escaped_characters_in_strings|escaping]] following new-line character: | ||
- | |||
- | <code batch> | ||
- | winscp.com /ini=nul /command ^ | ||
- | "open sftp://user:password@example.com/ -hostkey=""ssh-rsa 2048 xxxxxxxxxxx...""" ^ | ||
- | "get examplefile.txt d:\" ^ | ||
- | "exit" | ||
- | </code> | ||
- | |||
- | //See other [[scripts|useful example scripts]]//. | ||
===== Converting Script to Code Based on .NET Assembly ===== | ===== Converting Script to Code Based on .NET Assembly ===== |