如何打开从64位.NET应用程序一个WOW64注册表项 [英] How to open a WOW64 registry key from a 64-bit .NET application

查看:415
本文介绍了如何打开从64位.NET应用程序一个WOW64注册表项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的.NET应用程序(任何-CPU)需要读取由32位程序创建的注册表值。在64位的Windows这正好下在注册表中的Wow6432Node关键。我已阅读,你不应该硬code到Wow6432Node,所以什么是正确的方式来使用.NET访问它?

My .NET application (any-CPU) needs to read a registry value created by a 32-bit program. On 64-bit Windows this goes under the Wow6432Node key in the registry. I have read that you shouldn't hard-code to the Wow6432Node, so what's the right way to access it with .NET?

推荐答案

在那里你明确需要读取写的32位程序的值在64位程序的情况下,它的确定到c很难$ C $。很简单,因为实在是没有其他选择。

In the case where you explicitly need to read a value written by a 32 bit program in a 64 bit program, it's OK to hard code it. Simply because there really is no other option.

我当然会抽象出来给一个辅助功能。例如

I would of course abstract it out to a helper function. For example

public RegistryKey GetSoftwareRoot() {
  var path = 8 == IntPtr.Size 
    ? @"Software\Wow6432Node"
    : @"Software";
  return Registry.CurrentUser.OpenSubKey(path);
}

这篇关于如何打开从64位.NET应用程序一个WOW64注册表项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆