Automatically Downloads
This is a discussion about Automatically Downloads in the Windows Software category; 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 file name : vd20b203.
                                        
          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.
                                    
                                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.
Participate in our website and join the conversation
                         This subject has been archived. New comments and votes cannot be submitted.
                    
                    
                    Feb 26
Mar 25
0
1 minute
Responses to this topic
                                                    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.
OP
                                                    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
                                                    Try this:
Code:
 
Code:
So in your batch file:
Code:
Code:
                                            Code:
ftp -A -s:symantec.txtinstead of this:
Code:
ftp -A -s symantec.txt
So in your batch file:
Code:
ftp -A -s:symantec.txtand in symantec.txt:
Code:
open ftp.symantec.comcd AVDEFS/norton_antivirus_xdbbinarymget *.xdbquit
                                                    Why not use the automatic update ?