正在尝试编辑启用代理的注册表项



关闭控制台时,我不知道如何关闭Web代理。我当前的代码:

AppDomain.CurrentDomain.ProcessExit += delegate(object sender, EventArgs e)
        {
           RegistryKey inetproxyRegKey = Registry.CurrentUser.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Internet Settings", true); 
            inetproxyRegKey.SetValue("ProxyEnable", 0);
   }
static void Main(string[] args)
        {
            /*
            Your Code here
            */

            AppDomain.CurrentDomain.ProcessExit += new EventHandler(CurrentDomain_ProcessExit);
        }
        static private void CurrentDomain_ProcessExit(object sender, EventArgs e)
        {
            RegistryKey inetproxyRegKey = Registry.CurrentUser.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Internet Settings", true);
            inetproxyRegKey.SetValue("ProxyEnable",1);
        }

最新更新