Hey just have two questions
q1. So just wondering is there any way of doing copy without doing copy of temp files, mp3s etc...
# Backup
"c:\Program Files\WinSCP\WinSCP.com" /script=script.txt
# script.txt
option batch on
option confirm on
open namit:@test.ie
synchronize remote F:\+Christian /home/namit/Backup200208
close
exit
Where as i had robocopy do my backups before but was not to remote location.
# old backup
set drive=\\bob\Backup
set backupcmd=robocopy
SET dateNtime="%date:~3,2%-%date:~6,6%"
%backupcmd% "%USERPROFILE%" "%drive%\%USERNAME%\\%dateNtime%" /S /B /R:1 /W:1 /XD NetworkService *"temporary internet files" *cache Cookies
q2. also is there any way of doing compression before sending files beacuse i am finding that 100mb files that change daily are not fun to backup.
Thanks