I need a program that will do the following:
Take originalprogram.exe and make it into 2 files; program1.exe and program2.data. (The .data extension can be anything other than exe, bat, etc, and should be a proprietary extension.) Once the 2 new program files are created originalprogram.exe is no longer needed.
I need it so program1.exe is the main executable file to run originalprogram.exe. But the originalprogram.exe is inside program2.data and not inside program1.exe.
When you tr…