Back to Forum

Переключиться на русский

Переключитися на українську

As part of our collaboration with AVZ developer, Oleg Zaitsev, we have an mirror of the AVZ 5 bases on our server in case the official update mirror is unavailable.

Archives with bases for manual AVZ update:

How to Update Databases Using an Archive.

  1. Download the archive with databases for your version of AVZ.
  2. Unpack the contents of the archive, replacing files, into the Base folder.

Update Using a Script

Run the script in AVZ (File - Run Script):

var v: string;
begin
// Check the AVZ version
if GetAVZVersion < 5
then v := '4'
else v := '5';

// Connect according to Internet Explorer settings.
ExecuteAVUpdateEx('https://avz.safezone.cc/avz_up' + v, 0, '', '', '');

// Save the log in the folder next to AVZ. The log file name is avzX_upd.log
// Instead of 'X', it will be 4 or 5 depending on the AVZ version.
SaveLog(GetAVZDirectory + 'avz' + v + '_upd.log');
end.