在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
注册表的读写 1、读 public static string GetRegeditData() { //Win10 读写LocalMachine权限,没有访问权限 RegistryKey hkml = Registry.CurrentUser; RegistryKey software = hkml.OpenSubKey("SOFTWARE", true); RegistryKey aimdir = software.OpenSubKey("EmailTool", true); if (aimdir==null) { return null; } object value = aimdir.GetValue("LastDate"); return value==null?null:value.ToString(); } 2、写 public static bool CreateRegedit(string tovalue) { //Win10 读写LocalMachine权限,没有访问权限 RegistryKey hklm = Registry.CurrentUser; RegistryKey software = hklm.OpenSubKey("SOFTWARE", true); RegistryKey aimdir = software.CreateSubKey("EmailTool"); aimdir.SetValue("LastDate", tovalue); return true; } 这只是简单的读写,提供给大家入门直接使用的方法。
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论