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代表可读可写注册表 
 

转载于:https://www.cnblogs.com/davidyang78/archive/2010/12/02/1894538.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值