Dad installed all NOD32 in the unit. To help everyone upgrade the virus database, I went online for half a day and found this solution. This solution is to download the offline upgrade package from the official website to your local computer and automatically decompress it to a directory. (In fact, wget and unzip functions in Linux are used ~) Then, you can use IIS and other web server software to publish the Directory and become your own upgrading server ~
Because the password is required to download the offline update package from the official website, you need a genuine user name and password to avoid downloading files.
Files in the folder
D: \ nodups
Zhu── Bin
│ AutoUpdate. bat
│ AutoUpdate. vbs
│ Unzip.exe
│ Wget.exe
│
└ ── TMP
The AutoUpdate. vbs script is used to silently execute autouodate. bat. You can use the scheduled tasks in Windows to regularly execute the. vbs script to achieve automatic upgrade.
The offline update package automatically downloaded is in the./tmp folder, and the extracted files are stored in the./UPD folder. After decompression, the offline data package is automatically deleted.
The source code of the AutoUpdate. BAT file is as follows:
: Create by John Wu ([email protected]): Last Update: /14 @ echo onwget-N http://download.eset.com/download/engine/eav/offline_update_eav.zip -- http-user = username -- http-passwd = password-P .. /tmpecho file download at % time %, % date %> .. /log.txt if exist .. /tmp/offline_update_eav.zip unzip-Q-o .. /tmp/offline_update_eav.zip-D .. /upddel .. /tmp/offline_update_eav.zip
The source code of the AutoUpdate. vbs file is as follows:
Dim objShellset objShell=wscript.createObject("wscript.shell")iReturn=objShell.Run("cmd.exe /C autoupdate.bat",0,True)
Download link: http://down.51cto.com/data/1403210
This article is from "Agui ?" Blog, please be sure to keep this source http://aguifou.blog.51cto.com/1495469/1433188