您的位置:首页 > 其它

如何让程序自动运行

2013-09-12 19:25 225 查看
让程序自动运行,一般是通过注册表进行,首先打开注册表

运用

LONG RegOpenKey(
HKEY hKey,        // handle to open key
  LPCTSTR lpSubKey, // address of name of subkey to open
  PHKEY phkResult   // address of handle to open key
);
打开注册表;然后设置注册表的值


LONG RegSetValueEx(
HKEY hKey,           // handle to key to set value for
  LPCTSTR lpValueName, // name of the value to set
DWORD Reserved,      // reserved
  DWORD dwType,        // flag for value type
  CONST BYTE *lpData,  // address of value data
  DWORD cbData         // size of value data
);

以下是一个完整的函数,经过测试已经通过,可以直接运用,

void CMainFrame::EnableAutoStart()
{
CString sPath;
int nPos;
HKEY RegKey;
GetModuleFileName(NULL,sPath.GetBufferSetLength(MAX_PATH+1),MAX_PATH);
sPath.ReleaseBuffer();
nPos=sPath.ReverseFind('\\');
sPath=sPath.Left(nPos);
CString lpszFile=sPath+"\\test.exe";
CFileFind fFind;
BOOL bSuccess;
bSuccess=fFind.FindFile(lpszFile);
fFind.Close();
if(bSuccess)
{
CString fullName;
fullName=lpszFile;
RegKey=NULL;
RegOpenKey(HKEY_LOCAL_MACHINE,"Software\\Microsoft\\Windows\\CurrentVersion\\Run",&RegKey);
RegSetValueEx(RegKey,"made by wpf",0,REG_SZ,(const unsigned char*)(LPCTSTR)fullName,fullName.GetLength());
this->UpdateData(FALSE);
}
else
{
::AfxMessageBox("程序运行失败");
exit(0);
}[/code]
}

这篇文章是转的,没有时间去实践,有时间看看。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: