And does the
C:\path\to\
path exists?
C:\path\to\
path exists?
Error occurred during logging. It's been turned off.
Can't open log file 'C:\path\to\winscp.log'.
System Error. Code: 2.
The system cannot find the file specified
/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..xlsx
files to the archive
folder, but it keeps failing. Could someone let me know what I'm doing wrong?
@echo off
"C:\Users\kdixit\AppData\Local\Programs\WinSCP\WinSCP.com" ^
/log="C:\writable\path\to\log\WinSCP.log" /ini=nul ^
/command ^
"open sftp://test:blahblahblah@ftp.test.csod.com/ -hostkey=""ssh key here"" -rawsettings ProxyPort=0" ^
"cd /home/Reports/" ^
"mv *.xlsx /home/Reports/Archive/" ^
"exit"
set WINSCP_RESULT=%ERRORLEVEL%
if %WINSCP_RESULT% equ 0 (
echo Success
) else (
echo Attempt Failed!!!
)
exit /b %WINSCP_RESULT%