C # UnauthorizedAccessException на RegistryKey CreateSubKey - PullRequest
1 голос
/ 12 января 2012

Я получаю UnauthorizedAccessException каждый раз, когда я пытаюсь вызвать CreateSubKey в своем коде.

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();
    }
  }
}

Я нашел сообщение, где у кого-то возникла подобная проблема >> ЗДЕСЬ << </a> в MSDN Social, но решение (для использования перегруженного метода OpenSubKey) вернуло мне только NULL RegistryKey .

Это дляэмулятор устройства Windows Mobile 5.

Кто-нибудь может увидеть, что я делаю неправильно?

Ошибка выдается при первом обращении к ключу, который несуществует и пытается его создать.

Спасибо!

screen shot

Ответы [ 2 ]

2 голосов
/ 12 января 2012

Все три из них отлично работают для меня в эмуляторе 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"))
    {
    }
}
0 голосов
/ 12 января 2012

Чтобы создать ключ в 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);
    }
}

Надеюсь, это поможет вам.

...