I created a console application that works fine when it refers to a .exe file from program files, but my users may not have this .exe in their Program Files directory.
I would prefer to save the package as a single .exe for simplicity, so I was wondering how I can combine both .exe into one package.
One thing that I was thinking about was zipping.exe from the Program Files directory to a temporary location, and I would save the binary data for the zip archive in the console application source code. Is this the best way to do this, or are there better methods?
Note. I do not have .exe source code. I want to reference in my console application.
Kratz source
share