Hello,
hi, I have created one batch file to add dns server detail automatically with the netsh command.
i want to configure the proxy details in Internet explorer so that i dont need to go to internet options-connection-lan setting-then proxy server optiop i can configure it by batch file.
thanks in advance
Regards
Rajesh
Configuration: Windows XP Internet Explorer 6.0
Hello,
dim oShell
set oShell = Wscript.CreateObject("Wscript.Shel l")
if msgbox("Turn Proxy on?", vbQuestion or vbYesNo) = vbYes then
oShell.RegWrite "HKCU\Software\Microsoft\Windows\C urrentVersion\Internet Settings\ProxyEnable", 1, "REG_DWORD"
oShell.RegWrite "HKCU\Software\Microsoft\Windows\C urrentVersion\Internet Settings\ProxyServer", "proxy:8080", "REG_SZ"
else
oShell.RegWrite "HKCU\Software\Microsoft\Windows\C urrentVersion\Internet Settings\ProxyEnable", 0, "REG_DWORD"
end if
Set oShell = Nothing |