Hello Sir,
I want to download a file in particular website daily.
The file name is changed but the extension doesnot changed.
For example
I want to download Symantec Antivirus corporate edition updates
located in this website
http://www.symantec.com/avcenter/download/pages/US-SAVCE.html
file name : vd20b203.xdb
The file name was changed daily. But the extension ".xdb" was not changed.
I want to automatically download a file in my location.
Not for automatic updates in antivirus software.
Whether any software or feature is available in windows.
Thank You.
Page 1 of 1
Automatically Downloads
#2
Posted 06 March 2006 - 10:02 PM
Use FTP client and a batch script to download such files e.g.
ftp -A -s symantec.txt
Symantec.txt:
open ftp.symantec.com
cd AVDEFS/norton_antivirus_xdb
binary
mget *.xdb
quit
Then put the ftp command in a batch file and run it via Scheduled Tasks.
ftp -A -s symantec.txt
Symantec.txt:
open ftp.symantec.com
cd AVDEFS/norton_antivirus_xdb
binary
mget *.xdb
quit
Then put the ftp command in a batch file and run it via Scheduled Tasks.
#3
Posted 24 March 2006 - 04:13 PM
Hello Sir
The above batch file is not working sir. Please verify sir
Thank You
A.Kannan
The above batch file is not working sir. Please verify sir
Thank You
A.Kannan
#4
Posted 24 March 2006 - 08:32 PM
Try this:
instead of this:
So in your batch file:
and in symantec.txt:
Code:
ftp -A -s:symantec.txt
instead of this:
Code:
ftp -A -s symantec.txt
So in your batch file:
Code:
ftp -A -s:symantec.txt
and in symantec.txt:
Code:
open ftp.symantec.com cd AVDEFS/norton_antivirus_xdb binary mget *.xdb quit
Share this topic:
Page 1 of 1

Help










