RegistryKey regKey = Registry.CurrentUser;
string SubKeyPath = @"Software\Microsoft\Windows\CurrentVersion\Internet Settings";
using(RegistryKey optionKey = regKey.OpenSubKey(SubKeyPath, true))
{
//更改健值,设置代理,
optionKey.SetValue("ProxyEnable", 1);
optionKey.SetValue("ProxyServer", proxy);
}
//激活代理设置 InternetSetOption(0, 39, IntPtr.Zero, 0);
InternetSetOption(0, 37, IntPtr.Zero, 0);
這應是windows的登錄檔, 請將該文字存成副檔名為.reg, 然後直接點二下就可。因修改登錄檔會有一定的風險, 建議將這資料放入登錄檔前, 先將登錄檔完整備份, 萬一出了問題還有機會救回。