c# 修改注册表

来源:互联网 发布:只有微信无法连接网络 编辑:程序博客网 时间:2024/06/05 22:53
 

       //修改注册表
        public void IESetupPrint_Background()
        {
            RegistryKey key = Registry.CurrentUser;
            RegistryKey software = key.OpenSubKey("Software\\Microsoft\\Internet Explorer\\Main", true); //该项必须已存在

            software.SetValue("Print_Background", "yes");
            software.Close();
          
        }

      

        public void IESetupPageSetup()
        {
            RegistryKey key = Registry.CurrentUser;
            RegistryKey software = key.OpenSubKey("Software\\Microsoft\\Internet Explorer\\PageSetup", true); //该项必须已存在

            software.SetValue("header", "");
            software.SetValue("footer", "");
            software.Close();
        }

原创粉丝点击