WOW64 上的登錄重新導向範例
下列範例程式碼示範 64 位 Windows 上登錄重新導向器所提供的登錄個別檢視。 它也會示範如何根據金鑰的共用或重新導向來設定索引鍵的值。 如需詳細資訊,請參閱 受 WOW64 影響的登錄機碼。
針對 32 位和 64 位 Windows 分別編譯下列程式碼。 在 64 位 Windows 上執行每個產生的可執行檔,並比較輸出。 這兩個版本的範例輸出會列在原始程式碼下方。
#include <windows.h>
#include <stdio.h>
#pragma comment(lib, "advapi32.lib")
// Define application constants.
#if defined(_WIN64)
#define VIEW_DATA L"Hello! 64-bit World"
#define ALT_VIEW_DATA L"Hello! 32-bit World"
#define CROSS_ACCESS KEY_WOW64_32KEY
#else
#define VIEW_DATA L"Hello! 32-bit World"
#define ALT_VIEW_DATA L"Hello! 64-bit World"
#define CROSS_ACCESS KEY_WOW64_64KEY
#endif
// Create a registry key and set its value.
// Return TRUE if the function succeeds, FALSE if it fails.
BOOL
CreateRegistryKeyValue(
HKEY hKeyParent,
PWCHAR KeyName,
REGSAM rsAccessMask,
REGSAM rsSamViewFlag,
PBYTE pValue,
DWORD dwValueSize
)
{
DWORD dwDisposition;
HKEY hKey;
DWORD dwRet;
dwRet =
RegCreateKeyEx(
hKeyParent,
KeyName,
0,
NULL,
REG_OPTION_NON_VOLATILE,
rsAccessMask | rsSamViewFlag,
NULL,
&hKey,
&dwDisposition);
if (dwRet != ERROR_SUCCESS)
{
printf("Error opening or creating key.\n");
return FALSE;
}
// Attempt to set the value of the key.
// If the call fails, close the key and return.
if (ERROR_SUCCESS !=
RegSetValueEx(
hKey,
NULL,
0,
REG_SZ,
pValue,
dwValueSize))
{
printf("Could not set registry value.\n");
RegCloseKey(hKey);
return FALSE;
}
RegCloseKey(hKey);
return TRUE;
}
// Access a registry key and print its value.
// Return TRUE if the function succeeds, FALSE if it fails.
BOOL
AccessRegistryKeyValue(
HKEY hKeyParent,
PWCHAR KeyName,
REGSAM rsAccessMask,
REGSAM rsSamViewFlag
)
{
HKEY hKey;
WCHAR Buffer[MAX_PATH];
DWORD dwSize = sizeof(Buffer);
DWORD dwType;
DWORD dwRet;
dwRet =
RegOpenKeyEx(
hKeyParent,
KeyName,
0,
rsAccessMask | rsSamViewFlag,
&hKey);
if (dwRet != ERROR_SUCCESS)
{
printf("Error opening key!\n");
return FALSE;
}
if (ERROR_SUCCESS !=
RegQueryValueEx(
hKey,
NULL,
0,
&dwType,
(PBYTE)Buffer,
&dwSize))
{
printf("Could not read registry value.\n");
RegCloseKey(hKey);
return FALSE;
}
if (rsSamViewFlag != 0)
{
printf("Alternate view: %S\n", Buffer);
}
else
{
printf("Default view: %S\n", Buffer);
}
RegCloseKey(hKey);
return TRUE;
}
int
main()
{
BOOL Res;
// Define the list of keys to work with.
typedef struct {
HKEY hkRoot;
LPWSTR szRootName;
LPWSTR szName;
}KEYDATA;
KEYDATA Keys[] =
{
{ HKEY_LOCAL_MACHINE, L"HKLM", L"Software\\Hello World" },
{ HKEY_CLASSES_ROOT, L"HKCR", L"Hello" },
{ HKEY_CLASSES_ROOT, L"HKCR", L"CLSID\\{00000000-0000-0000-0000-ABCD00000000}" },
{ HKEY_CLASSES_ROOT, L"HKCR", L"CLSID\\{00000000-0000-0000-0000-ABCD00000000}\\InprocServer32" },
{ HKEY_CLASSES_ROOT, L"HKCR", L"CLSID\\{00000000-0000-0000-0000-ABCD00000000}\\LocalServer32" }
};
// Now create the keys.
for (int i = 0; i < _countof(Keys); i++)
{
// Create the keys in the alternate view of the registry.
Res =
CreateRegistryKeyValue(
Keys[i].hkRoot,
Keys[i].szName,
KEY_READ | KEY_WRITE,
CROSS_ACCESS,
(PBYTE)ALT_VIEW_DATA,
sizeof(ALT_VIEW_DATA));
if (Res == FALSE)
{
printf("Could not create keys in alternate view of the registry.\n");
return 1;
}
// Create the keys in the default view of the registry.
Res =
CreateRegistryKeyValue(
Keys[i].hkRoot,
Keys[i].szName,
KEY_READ | KEY_WRITE,
0,
(PBYTE)VIEW_DATA,
sizeof(VIEW_DATA));
if (Res == FALSE)
{
printf("Could not create keys in default view of the registry.\n");
return 1;
}
}
// Access the registry and print key values.
printf("Application string: %S\n", VIEW_DATA);
for (int i = 0; i < _countof(Keys); i++)
{
printf("%S\\%S\n", Keys[i].szRootName, Keys[i].szName);
Res =
AccessRegistryKeyValue(
Keys[i].hkRoot,
Keys[i].szName,
KEY_READ,
0);
if (Res == FALSE)
{
printf("Unable to access default view of registry.\n");
return 1;
}
// Calls with CROSS_ACCESS explicitly access the alternate registry view.
Res =
AccessRegistryKeyValue(
Keys[i].hkRoot,
Keys[i].szName,
KEY_READ,
CROSS_ACCESS);
if (Res == FALSE)
{
printf("Unable to access alternate view of registry.\n");
return 1;
}
}
return 0;
}
執行範例的 64 位版本時,會產生下列輸出。 HKCR\Hello的預設和替代檢視值都相同,因為共用此金鑰。 其他索引鍵的值會因為重新導向而有所不同。
Windows Server 2008、Windows Vista、Windows Server 2003 和 Windows XP: 當此範例在這些作業系統上執行時,LocalServer32 索引鍵的預設和替代檢視具有相同的值。 這是因為 LocalServer32 機碼會重新導向並 反映,這會導致其值在關閉金鑰控制碼時,在登錄的 64 位和 32 位檢視之間同步處理。 從 Windows 7 開始移除登錄反映。 如需詳細資訊,請參閱 登錄反映。
Application string: Hello! 64-bit World
HKLM\Software\Hello World
Default view: Hello! 64-bit World
Alternate view: Hello! 32-bit World
HKCR\Hello
Default view: Hello! 64-bit World
Alternate view: Hello! 64-bit World
HKCR\CLSID\{00000000-0000-0000-0000-ABCD00000000}
Default view: Hello! 64-bit World
Alternate view: Hello! 32-bit World
HKCR\CLSID\{00000000-0000-0000-0000-ABCD00000000}\InprocServer32
Default view: Hello! 64-bit World
Alternate view: Hello! 32-bit World
HKCR\CLSID\{00000000-0000-0000-0000-ABCD00000000}\LocalServer32
Default view: Hello! 64-bit World
Alternate view: Hello! 32-bit World
執行範例的 32 位版本時,會產生下列輸出。 針對 32 位應用程式,登錄的 64 位檢視是替代檢視,因此會反轉值,但 HKCR\Hello 除外,這是共用金鑰。
Application string: Hello! 32-bit World
HKLM\Software\Hello World
Default view: Hello! 32-bit World
Alternate view: Hello! 64-bit World
HKCR\Hello
Default view: Hello! 32-bit World
Alternate view: Hello! 32-bit World
HKCR\CLSID\{00000000-0000-0000-0000-ABCD00000000}
Default view: Hello! 32-bit World
Alternate view: Hello! 64-bit World
HKCR\CLSID\{00000000-0000-0000-0000-ABCD00000000}\InprocServer32
Default view: Hello! 32-bit World
Alternate view: Hello! 64-bit World
HKCR\CLSID\{00000000-0000-0000-0000-ABCD00000000}\LocalServer32
Default view: Hello! 32-bit World
Alternate view: Hello! 64-bit World
若要使用 regedit 檢查執行此範例的效果,請檢查下列索引鍵的值。 請注意,應用程式應該避免在硬式編碼登錄路徑中使用 Wow6432Node。
HKLM\SOFTWARE\Hello World
HKLM\SOFTWARE\Wow6432Node\Hello World
HKCR\CLSID\{00000000-0000-0000-0000-ABCD00000000}
HKCR\CLSID\{00000000-0000-0000-0000-ABCD00000000}\InprocServer32
HKCR\CLSID\{00000000-0000-0000-0000-ABCD0000000}\LocalServer32
HKCR\Hello HKCR\Wow6432Node\CLSID\{00000000-0000-0000-0000-ABCD00000000}
HKCR\Wow6432Node\CLSID\{00000000-0000-0000-0000-ABCD00000000}\InprocServer32
HKCR\Wow6432Node\CLSID\{00000000-0000-0000-0000-ABCD0000000}\LocalServer32
HKCR\Wow6432Node\Hello
相關主題