In Windows 7, how to change proxy settings from command line?

46

29

How do I change proxy settings from command line in Windows 7?

I'm not talking about just the http_proxy. I need to set system-wide proxy settings (the ones in Internet properties setting). How do I do that?

prongs

Posted 2012-05-02T16:08:50.667

Reputation: 609

In case proxy also requires authorization: http://stackoverflow.com/questions/26992886/set-proxy-through-windows-command-line-including-login-parameters

– Vadzim – 2017-05-16T18:56:51.247

Answers

15

You'll need to configure a registry script that will make the changes you normally would via the Control Panel, and then merge the script to enable the proxy. You would also need an "undo" registry script to disable the changes.

In my case, I have two scripts, enable.reg and disable.reg:

Enable Proxy:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"AutoConfigURL"="http://10.10.10.1/autoproxy/proxy.pac"

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections]
"DefaultConnectionSettings"=hex:16,00,00,00,05,02,00,00,0d,00,00,00,0e,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
"SavedLegacySettings"=hex:36,00,00,00,46,1a,00,00,0d,00,00,00,0e,00,00,00,32,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00

Disable Proxy:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"AutoConfigURL"=-

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections]
"DefaultConnectionSettings"=hex:16,00,00,00,05,02,00,00,0d,00,00,00,0e,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
"SavedLegacySettings"=hex:36,00,00,00,46,1a,00,00,0d,00,00,00,0e,00,00,00,32,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00

In the "disable" script, the =- at the end of AutoConfigURL actually deletes the key from the registry.

Note that the values you see above are modified for the purposes of this answer. The actual hex values are much longer.

To use these scripts, I had a batch file for each one, looking something like this:

@echo off
start /min reg import C:\Path\To\Registry\File\enable_proxy.reg

That is fully workable from the command line.

user3463

Posted 2012-05-02T16:08:50.667

Reputation:

This does not seem to work for me. Should I actually see the "use automatic configuration script" box being ticked and unticked in 'LAN Settings'? – Jonny – 2015-02-01T10:39:51.913

@prongs I doubt you're going to share that C# code... right? – tisaconundrum – 2018-03-18T00:26:16.777

I ended up doing something like this. I didn't know how to manipulate registry from batch script so I wrote c# code for this.. :). thanx anyways.. – prongs – 2012-05-03T10:41:13.293

62

Simple and working solution retrieved from http://www.ehow.com/how_6887864_do-proxy-settings-command-prompt_.html

Command to enable proxy usage:

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" ^
    /v ProxyEnable /t REG_DWORD /d 1 /f

Command to disable proxy usage:

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" ^
    /v ProxyEnable /t REG_DWORD /d 0 /f

Command to change the proxy address:

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" ^
    /v ProxyServer /t REG_SZ /d proxyserveraddress:proxyport /f

I have added line continuation (^) for improved readability. Also, in this case, it is more like a per-user setting than a system-wide setting.

sayap

Posted 2012-05-02T16:08:50.667

Reputation: 729

6But browsers don't navigate until you open the "LAN configuration" window. At least this happens to me when I use this method. I do this to wake up browsers that the proxy changed, only after that, the connecion works. – Marcos Cassiano – 2015-08-19T18:11:38.047

1@Cricrazy this is what you were looking for I think – Narzard – 2016-07-07T15:23:35.367

This doesn't seem to work at all for me. At least not in Windows 10. – Drew Chapin – 2018-01-30T15:49:10.353

how would i have to change these commands to make them work as a system-wide setting and not specific to the user who implements it? – sdgd – 2019-03-07T08:23:32.333

3IMO, this is the actual answer to the question. Thanks @sayap – kmonsoor – 2012-12-26T04:21:08.030

4+1. This is a much more elegant solution to mine. – None – 2013-07-29T20:28:11.433

3Note: The ^ characters are not part of the commands. – Joshua Drake – 2013-10-10T19:40:18.907

27

NetSh to the rescue!

NetSh winhttp set proxy should be helpful. Here are the commands:

netsh winhttp set proxy myproxy

netsh winhttp set proxy myproxy:80 "<local>bar"

netsh winhttp set proxy proxy-server="http=myproxy;https=sproxy:88" bypass-list="*.contoso.com"

Charles Oppermann

Posted 2012-05-02T16:08:50.667

Reputation: 393

Clearing the proxy using netsh: netsh winhttp reset proxy – Kevin Driedger – 2012-08-15T19:15:26.553

9I think this only applies to application that uses the WinHTTP library. After a quick test, it doesn't seem like any common application on my system uses that. – sayap – 2012-08-29T11:01:07.023

4

I did it in C#, but the philosphy is the same, writing to the registry, so the following instructions can be extrapolated to line command. It shall be done three things:

  1. Write to Registry "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings", on ProxyEnable: 1 to enable, 0 to disable

  2. Write to Registry "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings", on ProxyServer: xxx.xxx.xxx.xxxx:yyyy (xxx... is the IP, yy.. is the port)

  3. After performing steps 1 and 2 you will have written to registry the activation of proxy and the IP and port, but if you open the browser you will notice that it is not enough, you can't navigate yet. The third step consists of changing the registry regarding connections settings:

"Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" on "DefaultConnectionSettings".

Notice that although (at least for W7) there are 204 bytes in this registry, you only have to modify byte 8 (9th since byte 0 is the first). Byte 8 value not only contains information about proxy enable/disable, but also about other functionalities:

        //09 when only 'Automatically detect settings' is enabled 
        //03 when only 'Use a proxy server for your LAN' is enabled
        //0B when both are enabled
        //05 when only 'Use automatic configuration script' is enabled
        //0D when 'Automatically detect settings' and 'Use automatic      configuration script' are enabled
        //07 when 'Use a proxy server for your LAN' and 'Use automatic configuration script' are enabled
        //0F when all the three are enabled. 
        //01 when none of them are enabled. 

In my case, the 'Automatically detect settings' is always enabled, so I switch the value of byte 8 from 09 to 0B and viceversa to enable and disable the proxy.

Ivan

Posted 2012-05-02T16:08:50.667

Reputation: 49

1

I found an answer on SO that updates the DefaultConnectionSettings setting using powershell. I thought it may be useful for somebody. https://stackoverflow.com/a/15914470/1158180

– paulH – 2018-12-05T11:23:50.607

2

Create a batch file and paste following content(It will toggle the Proxy state),

@echo off

FOR /F "tokens=2* delims=    " %%A IN ('REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable') DO SET currentProxy=%%B
rem ECHO currentProxy=%currentProxy%

if %currentProxy%==0x1 (
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
echo Proxy Disabled
) else (
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
echo Proxy Enabled
  )

pause

Dinesh Gupta

Posted 2012-05-02T16:08:50.667

Reputation: 29

1This is very similar to @sayap's answer. – None – 2013-07-29T20:29:01.963

-3

I hope I am pointing you in the correct direction here, but if you are trying to access the proxy settings through "Internet options", simply open the start menu and type "internet option" (any setting or application you can locate this way also example "proxy"). You should then recognize this menu and be able to add your needed settings.

Luke Russell

Posted 2012-05-02T16:08:50.667

Reputation: 73

1dude... you didn't see the title proprely... I know what you are trying to tell me. I want to do it from command line. – prongs – 2012-05-02T16:24:11.693

sorry man, seems like buddy got you all fixed up though – Luke Russell – 2012-05-02T17:41:12.677