在win7上以编程方式更改代理地址

本文关键字:代理 地址 方式更 编程 win7 | 更新日期: 2023-09-27 18:08:48

在Windows 7中,我尝试用

程序启用chrome代理
RegistryKey registry = Registry.CurrentUser.OpenSubKey("Software''Microsoft''Windows''CurrentVersion''Internet Settings", true);
registry.SetValue("ProxyEnable", 1);
registry.SetValue("ProxyServer", "IP:8080");

但是现在什么都不起作用了。我不能再上网了。如何重置值,互联网将重新开始工作?

和哪里得到有效的代理url ?

在win7上以编程方式更改代理地址

只要禁用代理,它应该没问题。

string keyName = @"Software'Microsoft'Windows'CurrentVersion'Internet Settings";
using (RegistryKey key = Registry.CurrentUser.OpenSubKey(keyName, true))
{
    if (key != null)
    {
        key.SetValue("ProxyEnable", 0);
    }
}