Re: WinSCP scripts filling up page file
Did you check if some WinSCP processes are left behind?
Before posting, please read how to report bug or request support effectively.
Bug reports without an attached log file are usually useless.
@echo off
"C:\Program Files (x86)\WinSCP\WinSCP.com" ^
/log="C:\Logs\810upload.log" /ini=nul ^
/command ^
"open ftp://username:password@ftp.example.com/" ^
"lcd ""C:\Program Files (x86)\EDI\810\outbound""" ^
"cd /in" ^
"put -delete -filemask=""|*/"" *" ^
"exit"
set WINSCP_RESULT=%ERRORLEVEL%
if %WINSCP_RESULT% equ 0 (
echo Success
) else (
echo Error
)
exit /b %WINSCP_RESULT%