让程序开机自动启动

来源:互联网 发布:简单的数据分析小工具 编辑:程序博客网 时间:2024/06/10 09:07


#include <windows.h>
#include <iostream>
using namespace std;




int main()
{

HKEY   RegKey;  
char   sPath[MAX_PATH];  
//GetModuleFileName(NULL,sPath.GetBufferSetLength(MAX_PATH+1),MAX_PATH);  
strcpy(sPath , "C:\\Program Files\\NVSCenter\\NVSCenterV6.3.1.12\\Center.exe");
if(1)  
{  
char   fullName[MAX_PATH];  
RegKey=NULL;  
LONG error;
strcpy(fullName , "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run");//Software 
error = RegOpenKey(HKEY_LOCAL_MACHINE,(LPCWSTR)fullName,&RegKey);  //( LPCTSTR)
if(error != ERROR_SUCCESS)
{
/// AfxMessageBox("error");
}
error = RegSetValueEx(RegKey,(LPCWSTR)"Nvs Center",0,REG_SZ,(const   unsigned   char*)(LPCTSTR)sPath,57);//这里加上你需要在注册表中注册的内容  
if(error != ERROR_SUCCESS)
{
// AfxMessageBox("error");
}
RegCloseKey(RegKey);
// AfxMessageBox("ok!");
}  
else  
{
//AfxMessageBox("Error!");
exit(0);  

}
原创粉丝点击