WinSCP

WinSCP

Open source free SFTP client, FTP client, WebDAV client, S3 client and SCP client and file manager

Category
Cloud
License
open source
Platforms
Windows
Released
2000
Path
c:\WinSCP\WinSCP.com
Benefits
Its main function is file transfer between a local and a remote computer. Beyond this, WinSCP offers scripting and basic file manager functionality.
Notes
WinSCP.com canbe used for scripting.
Version
Latest known: 6.5.2 (2025-06-18)

Examples

1. Connects to example.com server with account user, downloads a file and closes the session.

winscp.com /ini=nul /command "open sftp://user:password@example.com/ -hostkey=""ssh-rsa 2048 xxxxxxxxxxx...""" "get examplefile.txt d:\" "exit"

2. Connects to example.com server with account user, uploads a file and closes the session.

winscp.com /command "open sftp://user:password@example.com/" "put examplefile.txt /home/user/" "exit"