About 51,700 results
Open links in new tab
  1. WinSCP :: Official Site :: Free SFTP and FTP client for Windows

    WinSCP is a popular free file manager for Windows supporting SFTP, FTP, FTPS, SCP, S3, WebDAV and local-to-local file transfers. A powerful tool to enhance your productivity with a …

  2. unix - Single line sftp from terminal - Stack Overflow

    Thanks for the reply, however, the answer I denoted above will utilize single line command with sftp to get a file from a remote server and save the file to a specific location on your local …

  3. Converting Windows FTP script to WinSCP SFTP script

    This guide explains how to convert existing FTP file transfer script using Windows built-in command-line FTP client (ftp.exe) to SFTP script using WinSCP. You can also use it to …

  4. Scripting and Task Automation - WinSCP

    Enter the console/scripting mode by using winscp.com; or /console command-line parameter with winscp.exe. For details see console/scripting command-line parameters. For automation, …

  5. open command - WinSCP

    WinSCP is a free file manager for Windows supporting FTP, SFTP, S3 and WebDAV.

  6. Upload file to SFTP using PowerShell - Stack Overflow

    You can have WinSCP generate the PowerShell script for the upload for you: Login to your server with WinSCP GUI; Navigate to the target directory in the remote file panel; Select the file for …

  7. How to verify if SFTP access has been granted on a server

    Jul 15, 2012 · How can we verify that SFTP access has been granted on a server, without installing any software/tools?

  8. SFTP to send file with bash script - Stack Overflow

    Jul 31, 2012 · Anyway, 6 years later, you can put sftp-commands like PUT into a file and then reference this file in your initial sftp-call. The makes the whole process completely non …

  9. How to run the sftp command with a password from Bash script?

    Mar 22, 2011 · Create a file put-script: open sftp://user:password@host; put local-file.name; exit Than run lftp -f put-script This way you do not have to have the username and password in a …

  10. How to transfer a file using sftp in UNIX - Stack Overflow

    Nov 11, 2014 · Use sftp instead of whatever command you are using in your .ksh script. See sftp man for reference. You may also want to look at scp secure copy - scp man. EDIT sftp is …