#include <INet.au3>
Local $str = _INetGetSource('http://www.symantec.com/business/security_response/definitions/download/detail.jsp?gid=n95')
Local $aA = StringRegExp($str, '(http\:\/\/definitions\.symantec\.com\/defs\/\d+-\d+-v5i32.exe)', 3)
If @error = 1 Then
MsgBox (0,0, "Ссылку не нашли!!!")
Exit
EndIf
Local $aA1 = StringSplit ($aA[0], "/", 2)
If @error = 1 Then
MsgBox (0,0, "Файл не нашли!!!")
Exit
EndIf
Local $hDownload = InetGet ( $aA[0] , @ScriptDir &"/"&$aA1[UBound[$aA1]-1], 1, 1)
Do
Sleep(250)
Until InetGetInfo($hDownload, 2)
InetClose($hDownload)