2

我正在尝试在我们团队的软件中引入一项功能,使用该功能用户将无法在特定时间后使用该软件的免费版本。我在某些软件中看到了一个功能,如果您在试用期结束后尝试卸载它,然后重新安装它会拒绝访问。我也想介绍这个功能。
1) 我如何知道该软件已预安装在特定计算机上。我试着寻找这个,我知道windows的注册表编辑器会记录所有已安装的软件,并且即使在卸载后也有记录。注册表编辑器能否帮助我设计此功能。如果是,你能告诉我如何用 C++ 编写代码,我可以使用它来读取注册编辑器。
2)一个人的计算机中是否还有其他一些独特的功能,例如我可以使用 C++ 代码记下的 MAC 地址。

4

3 回答 3

1

根据您的程序应该做什么,您可以做几件事。如果它是面向文档的,请从程序中删除“保存”,以便人们可以看到它有效,但在他们付款之前不要实际使用它。如果它是面向数据库的,则限制程序可以处理的记录数。

在安装过程中,或程序第一次运行时,使用日期、时间、卷号、匹配标签、硬盘空间等生成一个数字并将其存储在注册表中。这成为“激活码”。当客户付款时,他们需要将号码提交给您。您使用该数字作为秘密算法的输入来生成解锁密钥。剩下的就看你的想象了。

于 2013-07-12T09:45:17.820 回答
1

查看RegOpenKeyExRegSetValueEx以及访问注册表的相关页面。

要获取 MAC 地址,请查看GetAdaptersInfo - 以及此问题中的更多信息。

于 2013-07-12T09:53:28.710 回答
-1

*您可以使用以下示例作为建议*

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;
}
于 2013-07-12T09:43:18.770 回答