When installing a software application the installer usually copies the main application file and a lot of other files. The other files usually are files needed at runtime when the application executes. Runtime files like DLL, ActiveX, Bitmaps and other files.
RuntimePacker enables you to combine all that files into one executable file and distribute this file instead.
Send only one file to every user. Avoid revelation of the runtime files your application may use. The runtime files (DLL, ActiveX, gif, jpg, ...) are loaded automatically when the executable starts. The runtime files are loaded at runtime from the "combined" runtime file.
RuntimePacker squeezes your application into a single binary file (.EXE). It packs the required runtime files and the applications executable file into one "combined" executable file (.EXE). Instead of copying many separate files and runtime files your customer gets one executable - the "combined runtime file". So there is only one file to go!
Runtime modules that need to be registered (e.g. ActiveX) are registered automatically.
A Wizard is included and helps creating a project with the runtime file. Once the project done the new executable file can be recreated over and over again easily and combine the runtime files. This process can be totaly automated if for example the necessery step is added into a compilers "post-build" step. This way the new executable is recreated every time the compiler recompiles.
Pulisher - ADONTEC