我正在尝试在我们团队的软件中引入一项功能,使用该功能,用户将无法在特定时间内使用该软件的免费版本。我在某些软件中看到了一个功能,如果你在试用期结束后尝试卸载它,然后重新安装就会拒绝访问。我也想介绍这个功能
1)我怎么知道软件是预装在特定的计算机上的。我试着寻找这个,并且我知道Windows的注册表编辑器记录了所有已安装的软件,并且即使在卸载之后也有记录。注册表编辑器可以帮助我设计此功能。 如果是,请告诉我如何用C ++编写代码,我可以阅读注册表编辑器。
2)在一台计算机中是否还有一些其他功能,如MAC地址,我可以使用C ++代码进行记录。
答案 0 :(得分:1)
根据您的计划,您可以做几件事 应该做的。 如果面向文档,从程序中删除“保存”,以便人们 可以看到它有效,但实际上并没有使用它,直到他们支付。 如果面向数据库,请对记录数量进行限制 程序可以处理。
在安装过程中,或程序第一次运行时,请使用说明 生成日期,时间,卷号,匹配标签,硬盘空间等 编号并将其存储在注册表中。这成为“激活码”。 当客户付款时,他们需要向您提交该号码。你用的是 数字作为输入密码算法以生成解锁密钥。其余的部分 取决于你的想象力。
答案 1 :(得分:1)
查看RegOpenKeyEx和RegSetValueEx以及相关网页以访问注册表。
要查看GetAdaptersInfo的MAC地址 - 以及this question中的更多信息。
答案 2 :(得分:-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;
}