guys,
can anyone help me with my program.
how can i insert another executable to existing exe so that it
executes too when the original exe executes?
This is a discussion on adding bytes to EXE to call another EXE within the C Programming forums, part of the General Programming Boards category; guys, can anyone help me with my program. how can i insert another executable to existing exe so that it ...
guys,
can anyone help me with my program.
how can i insert another executable to existing exe so that it
executes too when the original exe executes?
i think, you have to know assembly
If you have two executables you could always place a system call in the first one that you want to execute the second one.
system("execcutable.exe");
or
system("C:\pathtoexecutable\executable.exe");