Integrate many exes together to make a complete project which loads exes

ethicalhacker

Well-known member
Joined
Apr 22, 2007
Messages
142
Location
Delhi,India
Programming Experience
5-10
I need to make an exe that will load various exes from the same folder like for example Tuneup utilities has one exe that is called integrator.exe on which there are buttons to load various other exes like disk cleaner.exe or system optimiser.exe etc Now all these exes and files get installed in one folder the TuneUp utilities folder in program files thus how can I do this?
And also will there be more memory usage while running the exe
or will the other exes be loaded only once clicked And also how do I dispose of a process after Ive done with that exe ?
 
Process.start(path to executable)

starts the executable as a seperate process.
 
Back
Top