How to turn off WinHttp proxy?

21

2

Not too long ago I turned on a proxy for WinHttp traffic like this (from this article):

netsh winhttp set proxy 127.0.0.1:8888

How can I turn the proxy off now? I can't seem to get the syntax right.

AngryHacker

Posted 2013-02-27T06:05:43.387

Reputation: 14 731

Answers

19

Open command prompt and enter the following commands:

netsh winhttp reset proxy

For details refer to this technet article on netsh commands for WinHttp

Roney Michael

Posted 2013-02-27T06:05:43.387

Reputation: 980