1

次の2つの項目で問題が発生しています。

  • ClassesRoot \ Typelib内のすべてのサブキー値を取得する方法、および;
  • サブキー値の配列で既知の値(パス/ dll名)に一致するものを見つける方法。

背景情報として、DLLが登録されているかどうかを確認する方法を見つけようとしています。私はDLLのディレクトリの場所と名前を知っていますが、他には何も知らないので、DLLのClassesRoot\Typelibをチェックすることがそれを行う1つの方法であると誰かが言いました。

誰かヒントはありますか?乾杯。

4

2 に答える 2

2

私はそれを広範囲にテストしたわけではなく、エラー処理コードはほとんどありませんが、これはあなたが始めるのに役立つはずです.

public static bool IsRegistered(string name, string dllPath)
{
    RegistryKey typeLibKey = Registry.ClassesRoot.OpenSubKey("TypeLib");
    foreach (string libIdKeyName in typeLibKey.GetSubKeyNames())
    {
        RegistryKey libIdKey = typeLibKey.OpenSubKey(libIdKeyName);
        foreach (string versionKeyName in libIdKey.GetSubKeyNames())
        {
            RegistryKey versionKey = libIdKey.OpenSubKey(versionKeyName);
            string regName = (string)versionKey.GetValue("");
            if (regName == name)
            {
                foreach (string itterKeyName in versionKey.GetSubKeyNames())
                {
                    int throwawayint;
                    if (int.TryParse(itterKeyName, out throwawayint))
                    {
                        RegistryKey itterKey = versionKey.OpenSubKey(itterKeyName);
                        string regDllPath = (string)itterKey.OpenSubKey("win32").GetValue("");
                        if (regDllPath == dllPath)
                        {
                            return true;
                        }
                    }
                }
            }
        }
    }

    return false;
}

}

于 2008-12-15T14:45:42.803 に答える
1

Microsoft.Win32.Registry と Microsoft.Win32.RegistryKey を見てください。

public void Foo()
{
   foreach (string s in Microsoft.Win32.Registry.CurrentUser.GetSubKeyNames())
   {
      Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(s);
      // check here for the dll value and exit if found
      // recurse down the tree...
   }
}
于 2008-12-15T13:43:52.443 に答える