Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 213663

WinSCP is an open source free SFTP, FTP and SCP client for Windows. WinSCP is commonly used by power users to upload files to web servers. Beyond this, WinSCP offers scripting and .NET assembly to automate file transfer tasks.

1 vote

Optimize buffer size in WinSCP

WinSCP documentation for error message Host is not communicating for more than 15 seconds says (among other): If the problem repeats, try turning off Optimize connection buffer size. …
Martin Prikryl's user avatar
0 votes

How to set up "keep remote up to date" as a default?

If you want to start "Keep remote directory up to date" automatically, you can use the /keepuptodate switch: winscp.exe session /keepuptodate C:\local\path /remote/path You can create a desktop short …
Martin Prikryl's user avatar
0 votes

Two way synchronization in WinSCP

.""" ^ "put -neweronly C:\local\path\test.cpp /remote/path/*" ^ "get -neweronly /remote/path/out C:\local\path\*" ^ "exit" timeout /t 30 goto loop (WinSCP GUI can generate a batch file template … for you) If you want to keep the connection open (not to reconnect for each iteration), you better use WinSCP .NET assembly from a PowerShell script. …
Martin Prikryl's user avatar
0 votes

Remote WinSCP commands not showing up

WinSCP Remote custom commands (as a kind of remote commands) work with the SCP only (and with the SFTP by fallback to the SCP). …
Martin Prikryl's user avatar
2 votes

WinSCP : Cannot initialize SFTP protocol. Is the host running an SFTP server?

Your log file says: sudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper WinSCP cannot prompt you for a sudo password … If you want to use sudo with WinSCP, you cannot require password prompt. See WinSCP FAQ How do I change user after login? …
Martin Prikryl's user avatar
2 votes

how to transfer files with reverse proxy ftp in winscp

Just use an IP address of the proxy as FTP server Host name in WinSCP. …
Martin Prikryl's user avatar
0 votes
Accepted

WinSCP: Mirror directory in the background

WinSCP does not support use of multiple connections for synchronization. … Though you can script this using WinSCP .NET assembly: Use Session.CompareDirectories method to find the list of files that need synchronization. …
Martin Prikryl's user avatar
1 vote

WinSCP PUT/upload using relative path

You can use relative paths in WinSCP. If it does not work, then the working directory is different than you think. Initial working directory depends on how you start WinSCP. … WinSCP logs its working directory at the beginning of its log file: . 2020-03-12 13:13:49.814 -------------------------------------------------------------------------- . 2020-03-12 13:13:49.823 WinSCP
Martin Prikryl's user avatar
2 votes
Accepted

WinSCP - edit connection config file?

WinSCP can load configuration from an INI file. …
Martin Prikryl's user avatar
1 vote

WinSCP wildcard directory and file

Use get test* If there no other directories in the remote directory, you can even use: get *
Martin Prikryl's user avatar
0 votes
Accepted

Kept asking for site password despite Master Password set

It looks like you didn't save your password to your stored site (or you didn't save the site at all). So there's nothing to be protected by the master password. Enter your credentials, including the …
Martin Prikryl's user avatar
0 votes

WinSCP auto Synchronization files of local subfolders directly into root's remote

There's a PowerShell script that uses WinSCP .NET assembly that does almost what you need: https://winscp.net/eng/docs/library_example_moves_files_keeping_directory_structure#upload_powershell Copy the … So you will want to remove the $True argument from: $session.PutFiles($localFilePath, $remoteFilePath, $True) Then you can install the script as an extension into WinSCP GUI. …
Martin Prikryl's user avatar
6 votes

How do you turn on the 'Ignore permission errors' option in WinSCP?

The answer by @ᔕᖺᘎᕊ is correct regarding enabling the option. See the documentation for details: https://winscp.net/eng/docs/ui_transfer_custom#upload Though note, that it is only a workaround, as t …
Martin Prikryl's user avatar
0 votes

How to zip multiple files or folders with WinSCP and automatically keep the file name part?

WinSCP does not have a pattern or any other mechanism to extract filename without extension (or substitute the extension). … For example you can replace the extension using the sed command: echo thisnewvideo.mp4 | sed 's/\..*$/.zip/' This will output: thisnewvideo.zip You can merge this into the WinSCP custom command …
Martin Prikryl's user avatar
0 votes

How to download files without via temporary folder in WinSCP?

If not, try reinstalling WinSCP first. …
Martin Prikryl's user avatar

1
2 3 4 5
12
15 30 50 per page