Re: with gui work with script not o_O
Please attach complete log files both from GUI and scripting.
@echo off
"C:\_GESTIONALE_NEW\TOOLS\WinSCPPortable\App\winscp\WinSCP.com" ^
/log="c:\_GESTIONALE_NEW\WEB-SITE\eBay\FTP\log\WinSCP.log" /ini=nul ^
/command ^
"open ftpes://MYUSER:MYPASS@MYDOMAIN/ -certificate=""55:66:66:77:77:77:55:77:77:55:YY:NN:77:77:77:OO:II:88:00:00""" ^
"ls" ^
"exit"
set WINSCP_RESULT=%ERRORLEVEL%
if %WINSCP_RESULT% equ 0 (
echo Success
) else (
echo Error
)
exit /b %WINSCP_RESULT%