Código:
ay alguna forma de que este codigo cambie laproxy desde un archivo text' ============================================= ' Autor : Bruno Capuano ' Fecha : 29-09-2005 ' ============================================= dim strProxyServer ' define el proxy y el puerto si es necesario strProxyServer = "MyProxyServer:80" ' ubicacion en la registry dim strRegPath strRegPath = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\" Set oWshShell = CreateObject("WScript.Shell") ' modifica las entradas en el registro Call oWshShell.RegWrite(strRegPath & "ProxyEnable", "00000001", "REG_DWORD") Call oWshShell.RegWrite(strRegPath & "ProxyOverride", "<local>", "REG_SZ") Call oWshShell.RegWrite(strRegPath & "ProxyServer", strProxyServer, "REG_SZ") * * * ' notificacion Msgbox "Proxy setting enabled. " & VbCrLf & "Server - " & strProxyServer ' destroy * Set oWshShell = Nothing
Código:
donde dice myproxyserver:80 van las proxys pero necesito saber como hacer para que reccora cada proxy del archivo textstrProxyServer = "MyProxyServer:80"
ejemplo
carga la proxy 192.85.65.4:80
abre pagina
espera tiempo
vuelve al inicio y carga otra proxy desde el archivo text
el archivo text lo tendria asi y quisiera que cargara una por una
156.456.65.54:80
456.465.46.5:65
156.456.65.54:7854
si me pudieran ayudar muchisimas gracias