怎样实现添加注册表
怎样将一个12.exe添加到开机自动运行RegCreateKey(HKEY_LOCAL_MACHINE," ",&hKey); ?
#include<stdlib.h>
int main()
{
system("reg add \"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\" /v name /d D:\\1.exe /f");
return 0;
}
蓝色部分名称,红色部分路径自己改.
#include<stdio.h>
#include<stdlib.h>
int main()
{
system("reg add \"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\" /v QQ /d D:\\Program Files\\Tencent\\QQ\\QQ.exe /f");
system("pause");
return 0;
}
运行结果:program too big to fit in memory!!!
怎么我那里不行的,提示:
‘reg’不是内部或外部命令。。。
还是program too big to fit in memory!!