Batch File not uploading but GUI works fine

Advertisement

pooky1233
Guest

Batch File not uploading but GUI works fine

I generated code to upload a folder to a server and when I run the file it outputs an Error.

However when loading the folder in the GUI it has no issue.

What could be the issue
Below is the code
@echo off
 
"C:\Program Files (x86)\WinSCP\WinSCP.com" ^
  /log="C:\writable\path\to\log\WinSCP.log" /ini=nul ^
  /command ^
    "open sftp://root:PASSWORD@IP/ -hostkey=""ssh-ed25519 255 rGxL7IIE6uBTft67P21537kT2jmxbwRIzM0vV+Zp6Hs""" ^
    "lcd C:\Users\User\Desktop\College" ^
    "cd /root/sync" ^
    "put YearTwo" ^
    "exit"
 
set WINSCP_RESULT=%ERRORLEVEL%
if %WINSCP_RESULT% equ 0 (
  echo Success
) else (
  echo Error %WINSCP_RESULT%
)
 
exit /b %WINSCP_RESULT%

Reply with quote

Advertisement

martin
Site Admin
martin avatar
Joined:
Posts:
41,210
Location:
Prague, Czechia

Re: Batch File not uploading but GUI works fine

What error?
Please attach a full session log file showing the problem (using the latest version of WinSCP).

To generate the session log file, use /log=C:\path\to\winscp.log command-line argument. Submit the log with your post as an attachment. Note that passwords and passphrases not stored in the log. You may want to remove other data you consider sensitive though, such as host names, IP addresses, account names or file names (unless they are relevant to the problem). If you do not want to post the log publicly, you can mark the attachment as private.

A log file of equivalent upload in GUI would be useful too.

Reply with quote

Advertisement

You can post new topics in this forum