[c#] OpenSubKey ()는 regedit.exe에서 볼 수있는 레지스트리 키에 대해 null을 반환합니다.

이 키 내에서 하위 키의 모든 표시 이름을 얻으려고합니다.

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

이 코드로 :

     RegistryKey newKey;
     string val;

     string KeyPath64Bit = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
     RegistryKey mainKey = Registry.LocalMachine.OpenSubKey(KeyPath64Bit);

     string[] RegKeys64Bits = Registry.LocalMachine.OpenSubKey(KeyPath64Bit).GetSubKeyNames();

     foreach (string s in RegKeys64Bits)
     {
        newKey = mainKey.OpenSubKey(s);
        val = newKey.GetValue("DisplayName", -1, RegistryValueOptions.None).ToString();
        if (val != "-1")
           file64.WriteLine(val);
     }

코드를 실행 한 후 필요한 키 중 하나를 찾을 수 없습니다.

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{DA5E371C-6333-3D8A-93A4-6FD5B20BCC6E}

그리고 표시 이름이 있어야합니다. Microsoft Visual C ++ 2010 x64 Redistributable-10.0.30319, 대신 GetSubKeyNames()메서드가 {DA5E371C-6333-3D8A-93A4-6FD5B20BCC6E}.KB2151757표시 이름이없는 하위 키를 제공합니다 .

필요한 정확한 하위 키 ( {DA5E371C-6333-3D8A-93A4-6FD5B20BCC6E})를 얻을 수없는 이유는 무엇 이며 어떻게 얻을 수 있습니까?



답변

64 비트 OS의 32 비트 애플리케이션 HKLM\Software\Wow6432Node은 기본적으로 노드를 봅니다. 64 비트 버전의 키를 읽으려면 다음을 지정해야합니다 RegistryView.

using (var hklm = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry64))
using (var key = hklm.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"))
{
   // key now points to the 64-bit key
}

이를위한 API는 .NET 4.0에 추가되었습니다. 아직 3.5를 사용하는 경우 P / Invoke를 사용하여 64 비트 키에 액세스해야합니다.
http://www.rhyous.com/2011/01/24/how-read-the-64-bit -32 비트 응용 프로그램의 레지스트리 또는 그 반대의 경우 /


답변

Visual Studio 2017에서

Project > Properties > Build > Uncheck 32 bit and Platform target as "Any CPU".


답변