PeterK2003
Joined: 16 Jan 2006 |
Posts: 0 |
|
|
 |
Posted: Mon Jan 16, 2006 2:17 am |
|
 |
 |
 |
 |
is there a way to update Clamwin from a command line in windows?
Thanks!
Peter
|
|
alch
Site Admin
Joined: 27 Nov 2005 |
Posts: 0 |
|
|
 |
Posted: Mon Jan 16, 2006 3:55 am |
|
 |
 |
 |
 |
FAQ:
https://www.clamwin.com/content/view/58/27/
|
|
PeterK2003
Joined: 16 Jan 2006 |
Posts: 0 |
|
|
 |
Posted: Mon Jan 16, 2006 2:36 pm |
|
 |
 |
 |
 |
that wasn't exactly the fix that i was looking for but i used wget and wrote a batch file so that i could use a scheduled task to make sure that the virus def get updated at least once a day. Thanks!
Code:
wget https://database.clamav.net/main.cvd
move main.cvd "C:\Documents and Settings\All Users\.clamwin\db"
wget https://database.clamav.net/daily.cvd
move daily.cvd "C:\Documents and Settings\All Users\.clamwin\db"
|
|