gpt4 book ai didi

c++ - 如何从 Windows 注册表中读取值

转载 作者:IT老高 更新时间:2023-10-28 12:03:58 25 4
gpt4 key购买 nike

给定一些注册表值的键(例如 HKEY_LOCAL_MACHINE\blah\blah\blah\foo)我该怎么做:

  1. 安全地确定存在这样的 key 。
  2. 以编程方式(即使用代码)获取其值。

我绝对无意将任何内容写回注册表(如果我能提供帮助,在我的职业生涯中)。因此,如果我错误地写入注册表,我们可以跳过关于我体内每个分子以光速爆炸的讲座。

更喜欢 C++ 中的答案,但大多数情况下只需要知道获取该值的特殊 Windows API 咒语是什么。

最佳答案

以下是一些用于检索以下内容的伪代码:

  1. 如果存在注册表项
  2. 该注册表项的默认值是什么
  3. 什么是字符串值
  4. 什么是 DWORD 值

示例代码:

包含库依赖:Advapi32.lib

HKEY hKey;
LONG lRes = RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SOFTWARE\\Perl", 0, KEY_READ, &hKey);
bool bExistsAndSuccess (lRes == ERROR_SUCCESS);
bool bDoesNotExistsSpecifically (lRes == ERROR_FILE_NOT_FOUND);
std::wstring strValueOfBinDir;
std::wstring strKeyDefaultValue;
GetStringRegKey(hKey, L"BinDir", strValueOfBinDir, L"bad");
GetStringRegKey(hKey, L"", strKeyDefaultValue, L"bad");

LONG GetDWORDRegKey(HKEY hKey, const std::wstring &strValueName, DWORD &nValue, DWORD nDefaultValue)
{
nValue = nDefaultValue;
DWORD dwBufferSize(sizeof(DWORD));
DWORD nResult(0);
LONG nError = ::RegQueryValueExW(hKey,
strValueName.c_str(),
0,
NULL,
reinterpret_cast<LPBYTE>(&nResult),
&dwBufferSize);
if (ERROR_SUCCESS == nError)
{
nValue = nResult;
}
return nError;
}


LONG GetBoolRegKey(HKEY hKey, const std::wstring &strValueName, bool &bValue, bool bDefaultValue)
{
DWORD nDefValue((bDefaultValue) ? 1 : 0);
DWORD nResult(nDefValue);
LONG nError = GetDWORDRegKey(hKey, strValueName.c_str(), nResult, nDefValue);
if (ERROR_SUCCESS == nError)
{
bValue = (nResult != 0) ? true : false;
}
return nError;
}


LONG GetStringRegKey(HKEY hKey, const std::wstring &strValueName, std::wstring &strValue, const std::wstring &strDefaultValue)
{
strValue = strDefaultValue;
WCHAR szBuffer[512];
DWORD dwBufferSize = sizeof(szBuffer);
ULONG nError;
nError = RegQueryValueExW(hKey, strValueName.c_str(), 0, NULL, (LPBYTE)szBuffer, &dwBufferSize);
if (ERROR_SUCCESS == nError)
{
strValue = szBuffer;
}
return nError;
}

关于c++ - 如何从 Windows 注册表中读取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34065/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com