C# 操作注册表【抄来备用】

1 using Microsoft.Win32;
2 using System.Diagnostics;
3 private void Access_Registry()
4 {
5 // 在HKEY_LOCAL_MACHINESoftware下建立一新键,起名为MCBInc
6   RegistryKey key = Registry.LocalMachine.OpenSubKey("Software", true);
7 // 增加一个子键
8 RegistryKey newkey = key.CreateSubKey("MCBInc");
9
10 // 设置此子键的值
11 newkey.SetValue("MCBInc", "NET Developer");
12
13 // 从注册表的其他地方获取数据
14
15 // 找出你的CPU
16 RegistryKey pRegKey = Registry.LocalMachine;
17 pRegKey = pRegKey.OpenSubKey("HARDWAREDESCRIPTIONSystemCentralProcessor");
18 Object val = pRegKey.GetValue("VendorIdentifier");
19 Debug.WriteLine("The central processor of this machine is:"+ val);
20 // 删除键值
21 RegistryKey delKey = Registry.LocalMachine.OpenSubKey("Software", true);
22 delKey.DeleteSubKey("MCBInc");
23 }
24

如果需要写注册表:

在写入注册表值的时候报错 

System.UnauthorizedAccessException: 无法写入到注册表项 

给OpenSubKey()方法给第2个参数设置为true就可以了,第2个参数为true代表可读可写注册表 
 

posted @ 2010-12-02 15:21  David.Yang  阅读(770)  评论(0编辑  收藏  举报