不小心,弄出了麻烦了,help
网上看到一个东西,是开机启动的程序,试了一下,不知道弄,现在想删除程序找不到了,帮帮忙看看怎么办原程序如下#include<stdio.h>
#include<stdlib.h>
#include"string.h"
int main(){
char add[4][200]={"reg add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run /v ",
"reg add HKU\\.DEFAULt\\Software\\Microsoft\\Windows\\CurrentVersion\\Run /v ",
"reg add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce /v "
"reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run /v "};
char *tp=" /t REG_SZ /d ";
char name[30];
char path[100];
int i;
printf("请输入新建启动项的名称(eg:program):");
gets(name);
printf("请输入该启动项的完整路径(eg:C:\\My document\\program.exe):\n");
gets(path);
for(i=0;i<4;i++)
{
strcat(add[i],name);
strcat(add[i],tp);
strcat(add[i],path);
system(add[i]);
}
return 0;
}