OpenSubKey()对于regedit.exe中可以看到的注册表项返回null


78

我正在尝试获取此键内所有子键的显示名称:

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()方法为我提供了sub key:{DA5E371C-6333-3D8A-93A4-6FD5B20BCC6E}.KB2151757它没有任何显示名称。

为什么我无法获得所需的确切子键({DA5E371C-6333-3D8A-93A4-6FD5B20BCC6E}),又如何获得呢?


如果以管理员身份运行Visual Studio,可以这样做吗?
tsells 2012年

@tsells尝试过,它不起作用。
Zak Soliman

您是否在64位OS上以32位进程运行?
理查德·迪明

@RichardDeeming可执行文件编译为32位,我的操作系统为64位
Zak Soliman 2012年

Answers:


185

HKLM\Software\Wow6432Node默认情况下,在64位OS上的32位应用程序将查看该节点。要读取密钥的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
}

.NET 4.0中已添加了用于执行此操作的API。如果您仍在使用3.5,则需要使用P / Invoke来访问64位密钥:http : //www.rhyous.com/2011/01/24/how-read-the-64-bit从32位应用程序注册或反之亦然/


谢谢。我有同样的问题,用相同的钥匙。:)
Eduardo

1
谢谢你 尽管我仍然不明白为什么有两个注册表。
罗伯特·诺亚克

@RobertNoack:我认为它主要用于COM,并确保环境变量的REG_EXPAND_SZ值正确扩展。MSDN上有一些信息-注册表重定向器
Richard Deeming 2015年

你救了我的日子。我对注册表项对我的举止感到震惊。+1。
RBT

我一定读过十几个解释器。这是第一个显示RegistryKey.OpenBaseKey(RegistryHive.LocalMachine,RegistryView.Registry64))步骤的步骤。谢谢!!
Joe Baker

14

在Visual Studio 2017中转到

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

2
我遇到了同样的问题-我未选中32Bit,并且工作正常。
RDV
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.