首頁 > 後端開發 > C++ > 如何從 32 位元應用程式存取 64 位元和 32 位元註冊表項?

如何從 32 位元應用程式存取 64 位元和 32 位元註冊表項?

Linda Hamilton
發布: 2025-01-16 19:07:10
原創
544 人瀏覽過

How to Access 64-Bit and 32-Bit Registry Keys from a 32-Bit Application?

從 32 位元應用程式存取 64 位元註冊表

感謝 WOW64(Windows on Windows 64 位元),32 位元應用程式可以存取 64 位元登錄。 此子系統有助於在 32 位元環境中進行 64 位元存取。

存取 64 位元登錄項目

使用RegistryView.Registry64存取64位元登錄:

<code class="language-csharp">using Microsoft.Win32;

string value64 = string.Empty;
RegistryKey localKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry64);
localKey = localKey.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion");
if (localKey != null)
{
    value64 = localKey.GetValue("RegisteredOrganization").ToString();
    localKey.Close();
}
Console.WriteLine($"RegisteredOrganization [64-bit]: {value64}");</code>
登入後複製

存取 32 位元註冊表項

使用RegistryView.Registry32存取32位元登錄:

<code class="language-csharp">string value32 = string.Empty;
RegistryKey localKey32 = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32);
localKey32 = localKey32.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion");
if (localKey32 != null)
{
    value32 = localKey32.GetValue("RegisteredOrganization").ToString();
    localKey32.Close();
}
Console.WriteLine($"RegisteredOrganization [32-bit]: {value32}");</code>
登入後複製

重要注意事項:WOW64、登錄路徑和鍵查​​詢

  • 在 64 位元 Windows 上,HKEY_LOCAL_MACHINESoftwareWow6432Node 保存 32 位元應用程式使用的值。
  • 由於 WOW64 重定向,32 位元和 64 位元應用程式都可以按預期存取 HKEY_LOCAL_MACHINESoftware
  • HKEY_LOCAL_MACHINESoftwareWow6432Node 在舊版 Windows 版本和 32 位元 Windows 7 中不存在。

要從 64 位元和 32 位元登錄中擷取值(對於檢索 SQL 實例名稱等情境很有用),建議使用聯合查詢:

<code class="language-csharp">public static IEnumerable<string> GetAllRegValueNames(string regPath, RegistryHive hive = RegistryHive.LocalMachine)
{
    var reg64 = GetRegValueNames(RegistryView.Registry64, regPath, hive);
    var reg32 = GetRegValueNames(RegistryView.Registry32, regPath, hive);
    var result = (reg64 != null && reg32 != null) ? reg64.Union(reg32) : (reg64 ?? reg32);
    return (result ?? new List<string>().AsEnumerable()).OrderBy(x => x);
}</code>
登入後複製

這提供了註冊表值的統一視圖,無論應用程式的體系結構如何。

以上是如何從 32 位元應用程式存取 64 位元和 32 位元註冊表項?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板