ErrorLevel
I've done installs for numerous clients, and everything has gone fine. All of a sudden, when I check in my script with the command:
if %errorlevel%==0 goto :end
Even though the file successfully uploaded, the file attempts to re-upload as the errorlevel being returned in now 1. I have no idea where to start troubleshooting, as this has worked for years. Below is the entire script:
:start
D:
CD "\Program Files (x86)\WinSCP\"
winscp.com /script=SendFiles.txt
if %errorlevel%==0 goto :end
"D:\Program Files (x86)\WinSCP\sleep.exe" 60
goto :start
:end
DEL "D:\Program Files (x86)\WinSCP\Outbound\*.zip" /Q
if %errorlevel%==0 goto :end
Even though the file successfully uploaded, the file attempts to re-upload as the errorlevel being returned in now 1. I have no idea where to start troubleshooting, as this has worked for years. Below is the entire script:
:start
D:
CD "\Program Files (x86)\WinSCP\"
winscp.com /script=SendFiles.txt
if %errorlevel%==0 goto :end
"D:\Program Files (x86)\WinSCP\sleep.exe" 60
goto :start
:end
DEL "D:\Program Files (x86)\WinSCP\Outbound\*.zip" /Q