I have a Windows .bat
file like this:
.....
echo Job start at %DATEANDTIME% >> %Logfile%
ftp -s:ftpget.src >> %Logfile%
echo Job done at %DATEANDTIME% >> %Logfile%
I can run this batch file on cmd
console window and get the full log content.
But when I schedule a task job to run it, I only can get "Job start" and "Job done" lines on log file. Are there any special settings need config?