感謝 WOW64(Windows on Windows 64 位元),32 位元應用程式可以存取 64 位元登錄。 此子系統有助於在 32 位元環境中進行 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>
使用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>
HKEY_LOCAL_MACHINESoftwareWow6432Node
保存 32 位元應用程式使用的值。 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中文網其他相關文章!