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;
                }
            }
     
        }
    }
  • 相关阅读:
    【python cookbook】找出序列中出现次数最多的元素
    2018/1/21 Netty通过解码处理器和编码处理器来发送接收POJO,Zookeeper深入学习
    读《风雨20年》小感
    两个知识点的回顾(const指针和动态链接库函数dlopen)
    小试牛刀
    chmod,chown和chgrp的区别
    node.js中使用node-schedule实现定时任务
    在 Node.js 上调用 WCF Web 服务
    nodejs发起HTTPS请求并获取数据
    openstack 之~云计算介绍
  • 原文地址:https://www.cnblogs.com/Hsppl/p/2597825.html
Copyright © 2011-2022 走看看