在C#中操作注册表

作者:杨忠勋
专业:计算机软件开发及应用
语言能力:TOFEL633 GRE2140
Email:[email protected]

使用 VC , VB 等语言操作注册表的例子已经有很多了,其实在 C# 里操作注册表更加的简单方便。下面的例子就提供了在 C# 里操作注册表的方法:

using Microsoft.Win32;


    using System.Diagnostics;


    private void Access_Registry()


    {


         // 在HKEY_LOCAL_MACHINE\Software下建立一新键,起名为MCBInc


            RegistryKey key = Registry.LocalMachine.OpenSubKey("Software", true);


         // 增加一个子键


            RegistryKey newkey = key.CreateSubKey("MCBInc");


   


    // 设置此子键的值


            newkey.SetValue("MCBInc", "NET Developer");


         


  // 从注册表的其他地方获取数据


         


  // 找出你的CPU


            RegistryKey pRegKey = Registry.LocalMachine;


            pRegKey = pRegKey.OpenSubKey("HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0");


            Object val = pRegKey.GetValue("VendorIdentifier");


            Debug.WriteLine("The central processor of this machine is:"+ val);


         // 删除键值


            RegistryKey delKey = Registry.LocalMachine.OpenSubKey("Software", true);


            delKey.DeleteSubKey("MCBInc");


    }
Published At
Categories with Web编程
Tagged with
comments powered by Disqus