26

If I edit Proxy Settings through the Control Panel, the settings are stored in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable and ...\ProxyServer. These settings are of course not used when running as a service under LOCAL SYSTEM.

So I tried setting ProxyEnable and ProxyServer under HKEY_USERS\S-1-5-18\... (as well as HKEY_USERS\.DEFAULT\... and all the other users on the system), but that does not work.

How do I set the proxy settings for the LOCAL SYSTEM user?

Rasmus Faber
  • 623
  • 1
  • 6
  • 9

6 Answers6

25

It is actually the value in Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections\DefaultConnectionSettings that is used.

Since that is not easily modified, you can modify the proxy settings for a user, export the registry key, modify the path in the exported file to HKEY_USERS\S-1-5-18 and reimport it.

030
  • 5,731
  • 12
  • 61
  • 107
Rasmus Faber
  • 623
  • 1
  • 6
  • 9
13

First, run cmd as administrator to open a command prompt.

Command to copy proxy settings of current user to WinHttp:

netsh winhttp import proxy source =ie

To reset the proxy to default settings:

netsh winhttp reset proxy

To show proxy settings of current user:

netsh winhttp show proxy
Florian Winter
  • 204
  • 1
  • 2
  • 10
TomazZ
  • 139
  • 1
  • 2
  • 4
    [One liner](https://superuser.com/questions/489527/how-can-i-configure-proxy-settings-for-all-apps-system-ie-etc): `netsh winhttp import proxy source =ie` – Vadzim May 22 '17 at 07:28
  • 2
    this doesn't work running as a `SYSTEM` it will return none – AK_ Mar 27 '21 at 21:38
7

Another way, albeit much messier, is to use psexec to open a command prompt running as LOCAL SYSTEM, then from that open iexplore.exe, modify the settings appropriately.

Rory
  • 482
  • 5
  • 12
  • 22
1

You might want to try using ProxyCFG.EXE, which sets the proxy for any WinHTTP calls.

Christopher_G_Lewis
  • 3,647
  • 21
  • 27
1

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

Reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyServer" /t REG_SZ /d "http://procycorp.bac:80" /f

user319684
  • 19
  • 1
  • 2
    Does that actually work now? 7 years ago when I last tried this, it just changed the values in the registry, but you had to change Connections\DefaultConnectionSettings to actually get Windows to use the procy server. – Rasmus Faber Oct 31 '15 at 06:29
  • 1
    This sets the current user (CU in HKCU), so not the local system user. – Ralph Bolton Jan 17 '19 at 14:45
1

The Same thing can be done much easier in this way-

& C:\windows\System32\bitsadmin.exe /Util /SetIEProxy LocalSystem Manual_proxy http://<proxyserver>:<proxy port> "<Any bypasses to be added>"