I have this code that works well for me, if it can help you #include <String.au3>
#NoTrayIcon
$Handle = FileOpen($CmdLine[1],0)
$RemoteVersion = ""
$Found = False
If ($Handle <> -1) Then
While Not $Found
$Line = FileReadLine($Handle)
If (@error <> 0) Then
MsgBox(0,"Problem","Cannot find the current version in the downloaded file!")
ExitLoop
Else
$FoundString = StringRegExp($Line,"Download CCleaner \d+\.\d+\.\d+",1)
If (Ubound($FoundString)) Then
$RemoteVersionArray = StringRegExp($FoundString[0],"\d+\.\d+",1)
$RemoteVersion = $RemoteVersionArray[0]
$Found = True
EndIf
EndIf
WEnd
FileClose($Handle)
Else
MsgBox(0,"File problem","Cannot open """ & $CmdLine[1] & """ for reading!",10)
EndIf
If ($Found) Then
IniWrite($CmdLine[2],"Version","RemoteVersion",$RemoteVersion)
IniWrite($CmdLine[2],"Version","RemoteVersionURL","[url="http://www.piriform.com/ccleaner/download/portable/downloadfile"]http://www.piriform.com/ccleaner/download/portable/downloadfile[/url]")
EndIf it is called from a script Not au3 WebGet,http://filehippo.com/download_ccleaner/,%Temp%\DownloadPage.htm
If,ExistFile,%Temp%\DownloadPage.htm,Begin
Echo,"Processing downloaded file to get current version..."
ShellExecute,Hide,%Temp%\GetCCleanerCurrentVersion.exe,"%Temp%\DownloadPage.htm %Temp%\CCleanerVer.ini"
End
Else,Echo,"Could not check current version!"
// See if we have to do a full download
IniRead,%Temp%\CCleanerVer.ini,Version,LocalVersion,%LocalVer%
IniRead,%Temp%\CCleanerVer.ini,Version,RemoteVersion,%RemoteVer%
If,%LocalVer%,NotEqual,%RemoteVer%,Begin
Echo,"** Newest CCleaner version is %RemoteVer% **"
Run,%ScriptFile%,Download
End
Else,Echo,"** CCleaner version is %RemoteVer% **"