1

每当我尝试在我的代码中调用CreateSubKey时,我都会收到UnauthorizedAccessException 。

const string regKeyPath = @"Software\Apps\jp2code.net\FTMaint";

private void BuildRegistry() {
  string[] split = regKeyPath.Split('\\');
  keyMaker(Registry.LocalMachine, split, 0);
}

private static void keyMaker(RegistryKey key, string[] path, int index) {
  string keyValue = path[index++];
  RegistryKey key2;
  if (!String.IsNullOrEmpty(keyValue)) {
    string subKey = null;
    string[] subKeyNames = key.GetSubKeyNames();
    foreach (var item in subKeyNames) {
      if (keyValue == item) {
        subKey = item;
      }
    }
    if (String.IsNullOrEmpty(subKey)) {
      key2 = key.CreateSubKey(keyValue);
    } else {
      key2 = key.OpenSubKey(subKey);
    }
    //key2 = key.OpenSubKey(keyValue, String.IsNullOrEmpty(subKey));
  } else {
    key2 = key;
  }
  if (index < path.Length) {
    try {
      keyMaker(key2, path, index + 1);
    } finally {
      key2.Close();
    }
  }
}

我在 MSDN Social 上发现有人遇到类似问题的帖子>> HERE <<,但那里的解决方案(使用重载的 OpenSubKey 方法)只为我返回了一个 NULL RegistryKey

这适用于 Windows Mobile 5 设备模拟器。

谁能看到我做错了什么?

当代码第一次到达一个不存在的键并尝试创建它时,就会引发错误。

谢谢!

截屏

4

3 回答 3

2

在 WinMo 6 模拟器上,这三个对我来说都很好。

创建根密钥:

using (var swKey = Registry.LocalMachine.CreateSubKey("foo"))
{
    using (var subkey = swKey.CreateSubKey("OpenNETCF"))
    {
    }
}

通过路径创建子项

using (var swKey = Registry.LocalMachine.CreateSubKey("software\\foo"))
{
    using (var subkey = swKey.CreateSubKey("OpenNETCF"))
    {
    }
}

直接创建子键:

using (var swKey = Registry.LocalMachine.OpenSubKey("software", true))
{
    using (var subkey = swKey.CreateSubKey("OpenNETCF"))
    {
    }
}
于 2012-01-12T19:20:36.090 回答
1

我在通过它创建RegistryKey实例时发现Registry.CurrentUser.OpenSubKey它是只读的。所以我可以打电话GetValue,但是当我来尝试打电话时,SetValue我得到了UnauthorizedAccessException. 诀窍是调用Registry.CurrentUser.OpenSubKey将可写参数设置为true,然后调用SetValue成功。

所以而不是:

key2 = key.OpenSubKey(subKey);

采用:

key2 = key.OpenSubKey(subKey, writable: true);

这可能适用于对CreateSubKey.

最初的问题是在 Windows Mobile 的上下文中提出的。我没有使用过 Windows Mobile(现在不确定是否有人使用过),但我希望 writeable 参数会在那里。

于 2021-03-05T16:58:48.170 回答
0

要在安装期间在 LocalMachine 中创建密钥,请执行以下操作:

[RunInstaller(true)]
public class InstallRegistry : Installer
{
    public override void Install(System.Collections.IDictionary stateSaver)
    {
        base.Install(stateSaver);

        using (RegistryKey key = Registry.LocalMachine.CreateSubKey(@"software\..."))
        {
            RegistrySecurity rs = new RegistrySecurity();
            rs.AddAccessRule(new RegistryAccessRule(new SecurityIdentifier(WellKnownSidType.BuiltinUsersSid, null), RegistryRights.FullControl, InheritanceFlags.None, PropagationFlags.NoPropagateInherit, AccessControlType.Allow));
            key.SetAccessControl(rs);
        }
    }
    public override void Rollback(System.Collections.IDictionary savedState)
    {
        base.Rollback(savedState);
    }
}

希望这会帮助你。

于 2012-01-12T18:16:04.523 回答