En este blog podremos compartir y comentar varios de los problemas raros y comunes que se nos pueden presentar en el dia a dia cuando atendemos casos de soporte.. espero que encontres tu respuesta aquí.. si no lo solucionamos juntos.. dale..
martes, 18 de febrero de 2014
SCRIPTS: change proxy IE
dim strProxyServer
strProxyServer = "192.168.10.20:8080"
dim strRegPath
strRegPath = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\"
Set oWshShell = CreateObject("WScript.Shell")
Call oWshShell.RegWrite(strRegPath & "ProxyEnable", "00000001", "REG_DWORD")
Call oWshShell.RegWrite(strRegPath & "ProxyOverride", "<local>", "REG_SZ")
Call oWshShell.RegWrite(strRegPath & "ProxyServer", strProxyServer, "REG_SZ")
Msgbox "Proxy Cambiado y habilitado " & VbCrLf & "Proxy server - " & strProxyServer
Set oWshShell = Nothing
Suscribirse a:
Comentarios de la entrada (Atom)
No hay comentarios.:
Publicar un comentario