Mira, yo tengo Internet Explorer 8, y la ultima version de Chrome
Internet Explorer tiene como UserAgent Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Tablet PC 2.0; .NET4.0C; .NET4.0E)*
Chrome : Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1
Lo que hize fue, abrir tantas descargas en Chrome, hasta que me salga captcha, entonces me voy hasta al Internet Explorer pongo un link, y no me lo pide D:
Yo hize un codigo asi para coger el link, es algo mas arcaico a mi parecer
Dim pos, pos1, pos2, pos3 As Long
Dim Linkhtml As String
pos = InStr(Text1, "kNO")
If pos > 0 Then
Linkhtml = Mid(Text1, pos + 6, 300)
pos1 = InStr(Linkhtml, """")
pos2 = InStr(pos1 + 1, Linkhtml, """")
Text2 = Mid(Linkhtml, pos1 + 1, (pos2 - pos1) - 1)
pos3 = InStr(Text2, "http")
If pos3 > 0 Then
'Call ShellExecute(Me.hwnd, vbNullString, Text2.Text, vbNullString, vbNullString, SW_SHOWNORMAL)
end if