首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

简略设置程序自启动

2012-11-17 
简单设置程序自启动/*example: SetAutoRun(abc,c:\\abc.exe)*/void SetAutoRun(const char* szValueN

简单设置程序自启动

/*

example: SetAutoRun("abc","c:\\abc.exe");

*/

void SetAutoRun(const char* szValueName,const char* szData)
{
 HKEY hKey;
 DWORD dwRet = RegCreateKey(HKEY_LOCAL_MACHINE,"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run",&hKey);
 if (dwRet != ERROR_SUCCESS)
  return;

 char szVal[MAX_PATH] = {0};
 DWORD dwLen = MAX_PATH;
 memset(szVal,0,MAX_PATH);
 DWORD dwType = REG_SZ;
 dwRet = RegQueryValueEx(hKey,szValueName,NULL,&dwType,(LPBYTE)szVal,&dwLen);
 if (dwRet == ERROR_SUCCESS)
 {
  if (stricmp(szVal,szData) != 0)
  {
   RegSetValueEx(hKey,szValueName,0,REG_SZ,(const BYTE*)szData,strlen(szData));
  }
 }
 else
 {
  RegSetValueEx(hKey,szValueName,0,REG_SZ,(const BYTE*)szData,strlen(szData));
 }
 RegCloseKey(hKey);
}

热点排行