zoukankan      html  css  js  c++  java
  • [C#]windows注册表操作类

    using System;
    using System.Collections.Generic;
    using System.Text;
    using Microsoft.Win32;
     
    namespace SafetyPCClient.Function
    {
        public class RegisterOperate
        {
             /// <summary>
            /// 写入注册表
            /// </summary>
            /// <param name="strName"></param>
            public static void SetRegEditData(string strName, string strValue)
            {
                try
                {
                    RegistryKey hklm = Registry.LocalMachine;
                    RegistryKey software = hklm.OpenSubKey("SOFTWARE", true);
                    RegistryKey aimdir = software.CreateSubKey("MySoftware");
                    aimdir.SetValue(strName, strValue);
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                }
     
            }
     
            /**/
            /// <summary>
            /// 修改注册表项
            /// </summary>
            /// <param name="strName"></param>
            /// <param name="strValue"></param>
            public static void ModifyRegEditData(string strName, string strValue)
            {
                try
                {
                    RegistryKey hklm = Registry.LocalMachine;
                    RegistryKey software = hklm.OpenSubKey("SOFTWARE\\MySoftware", true);
                    software.SetValue(strName, strValue);
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                }
            }
     
            /**/
            /// <summary>
            /// 判断指定注册表项是否存在
            /// </summary>
            /// <param name="strName"></param>
            /// <returns></returns>
            public static bool IsExist(string strName)
            {
                try
                {
                    bool exit = false;
                    string[] subkeyNames;
                    RegistryKey hkml = Registry.LocalMachine;
                    RegistryKey software = hkml.OpenSubKey("SOFTWARE", true);
                    RegistryKey aimdir = software.OpenSubKey("MySoftware", true);
                    subkeyNames = aimdir.GetValueNames();
                    foreach (string keyName in subkeyNames)
                    {
                        if (keyName == strName)
                        {
                            exit = true;
                            return exit;
                        }
                    }
                    return exit;
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                    return false;
                }
            }
     
        }
    }
  • 相关阅读:
    任务框架--Quartz 配置文件
    地址和值
    线性基学习笔记
    S07
    如何在实际项目中使用PageHelper分页插件
    设计模式:原型模式
    常用JS代码片段
    Thomson Plaza里面的三家店以及水果大会
    13.搜索过滤
    07-多线程
  • 原文地址:https://www.cnblogs.com/Hsppl/p/2597825.html
Copyright © 2011-2022 走看看