As part of our collaboration with AVZ developer, Oleg Zaitsev, we have an mirror of the AVZ 6(5) bases on our server in case the official update mirror is unavailable.
Archives with bases for manual AVZ update:
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.