Re: Automated login via Explicit TLS over FTP fails, Access denied
or with UTF8-code-replace:
-------------------------
"pass%2B%2Bword-> winscp: "passBBword"
This is the correct syntax for WinSCP command-line.
But not for a batch file (where you probably use the command).
The command interpreter (
cmd.exe
) replaces the %2
with the second argument of the batch file. So WinSCP gets passBBword
if the second argument is not specified.
You have to escape the
%
by doubling it: pass%%2B%%2Bword
.
The next version of WinSCP will be able to generate a batch file too (not only the URL), caring for this.