《2022年VC开机自动启动程序代码 .pdf》由会员分享,可在线阅读,更多相关《2022年VC开机自动启动程序代码 .pdf(3页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、VC 开机自动启动程序代码很多监控软件要求软件能够在系统重新启动后不用用户去点击图标启动项目,而是直接能够启动运行,方法是写注册表SoftwareMicrosoftWindowsCurrentVersionRun。参考程序可以见下:(查找程序目录的执行文件,存在则进行添加注册表操作) / 实用代码一int C*Dlg:CreateRun(void) / 添加以下代码 HKEY RegKey; CString sPath; GetModuleFileName(NULL,sPath.GetBufferSetLength(MAX_PATH+1),MAX_PATH); sPath.ReleaseBuf
2、fer(); int nPos; nPos= sPath.ReverseFind(); sPath=sPath.Left(nPos); CString lpszFile=sPath+getip.exe;/这里加上你要查找的执行文件名称 CFileFind fFind; BOOL bSuccess; bSuccess=fFind.FindFile(lpszFile); fFind.Close(); if(bSuccess) CString fullName; fullName=lpszFile; RegKey=NULL; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - -
3、- - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 3 页 - - - - - - - - - RegOpenKey(HKEY_LOCAL_MACHINE,SoftwareMicrosoftWindowsCurrentVersionRun,&RegKey); RegSetValueEx(RegKey,getip,0,REG_SZ,(constunsigned char*)(LPCTSTR)fullName,fullName.GetLength();/这里加上你需要在注册表中注册的内容this-UpdateData(FALSE); else /the
4、App.SetMainSkin(); :AfxMessageBox(没找到执行程序,自动运行失败); exit(0); return 0; / 把上面的getip(共 2 处)替换成自己想启动程序的名字。实用代码二:/ 写入注册表 ,开机自启动HKEY hKey; / 找到系统的启动项LPCTSTR lpRun = SoftwareMicrosoftWindowsCurrentVersionRun; / 打开启动项Key long lRet = RegOpenKeyEx(HKEY_LOCAL_MACHINE, lpRun, 0, KEY_WRITE, &hKey); if(lRet = ERR
5、OR_SUCCESS) char pFileNameMAX_PATH = 0; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 3 页 - - - - - - - - - / 得到程序自身的全路径DWORD dwRet = GetModuleFileName(NULL, pFileName, MAX_PATH); / 添加一个子Key, 并设置值/ 下面的 getip是应用程序名字(不加后缀.exe )lRet = RegSetValueEx(hKey, getip, 0, REG_SZ, (BYTE *)pFileName, dwRet); / 关闭注册表RegCloseKey(hKey); if(lRet != ERROR_SUCCESS) AfxMessageBox(系统参数错误,不能随系统启动); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 3 页 - - - - - - - - -