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
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%