1. 不需要管理员权限的程序,随机器自动启动写入的位置为:
计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
2. 需要管理员权限的程序,随机器自动启动写入的位置为:
计算机\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run
void OnSetAutorun(bool _bAutoStart)
{
LONG iRet = 0;
char cFilePath[255] = { 0 };
HMODULE hFilePath = GetModuleHandle(NULL);
memset(cFilePath, 0, 255);
//得到当前执行文件的全路径
GetModuleFileNameA(hFilePath, cFilePath, sizeof(cFilePath));
if (_bAutoStart)
{
HKEY hKey;
iRet =
RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Run",
0, KEY_ALL_ACCESS, &hKey);
if (iRet != ERROR_SUCCESS)
{
return;
}
//写入注册表
char strCommand[255];
sprintf(strCommand, "\"%s\" -service", cFilePath);
iRet = RegSetValueExA(hKey, "TestServer", 0, REG_SZ, (BYTE*)strCommand, strlen(strCommand));
RegCloseKey(hKey);
}
else
{
//取消设置开机启动
//打开注册表
HKEY hKey;
iRet = RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Run",
0, KEY_SET_VALUE, &hKey);
if (iRet != ERROR_SUCCESS)
{
return;
}
//删除注册表中内容
iRet = RegDeleteValue(hKey, "TestServer");
if (iRet != ERROR_SUCCESS)
{
return;
}
//关闭注册表
RegCloseKey(hKey);
}