Configuring proxy through batch file
Solved/Closed
Related:
- Batch file to change proxy settings windows 10
- Windows 10 iso file download - Download - Windows
- Hp smart download windows 10 - Download - Other
- Settings icon - Guide
- Subway surfers download for pc windows 10 - Download - Platform
- How to reset windows 10 password without logging in - Guide
1 reply
merrypc
Posts
12
Registration date
Saturday January 3, 2009
Status
Member
Last seen
June 15, 2009
14
Jun 10, 2009 at 07:55 AM
Jun 10, 2009 at 07:55 AM
Hello,
I have found the solution to the problem:
Put this in a .vbs file. double click the file to run it.
I have found the solution to the problem:
Put this in a .vbs file. double click the file to run it.
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
Jul 7, 2010 at 07:55 PM
Aug 16, 2010 at 03:10 PM