64位操作系统中的Registrykey显示32位应用程序

时间:2018-02-07 10:53:37

标签: c# windows visual-studio registry registrykey

string registry_key_x64 = @"SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall";

给我的结果与

相同
"*SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall*" 

在64位操作系统上。当我进入注册表编辑器并转到

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Win32;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            string registry_key = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
            using (Microsoft.Win32.RegistryKey key = Registry.LocalMachine.OpenSubKey(registry_key))
            {
                foreach (string subkey_name in key.GetSubKeyNames())
                {
                    using (RegistryKey subkey = key.OpenSubKey(subkey_name))
                    {
                        if (subkey.GetValue("DisplayName") != null)
                        {
                            Console.WriteLine(subkey.GetValue("DisplayName"));
                        }

                    }
                }
            }

它向我展示了我的代码为我提供的其他应用程序。

例如在Registery Editor中我有" wampserver"。 See picture of my Registry Editor

但是当我运行我的代码时,它显示了我的注册表编辑器中的不同应用程序(它显示了32位应用程序列表)Command Prompt (Running Code)

我的代码:

SPSite

1 个答案:

答案 0 :(得分:1)

很可能您的应用程序作为32位应用程序运行,因此返回注册表的WoW节点。将您的应用程序构建为AnyCPU或64位应用程序。