I've finished working on an application and it's now time to deliver it to the customer. Since it is a 5-file application which is smaller than 5 MB, i decided that the simplest and leanest way to deliver it would be as a RARSFX/ZipSFX file that is instructed to unpack everything in the temp folder, then launch the main executable file in my project.
Everything works OK until now, I chose ZipSFX as the default format, but the problem is that I designed my main exe to accept parameters (namely -batch (process a batch of files) and -nolang (do not localize app). However, when packed with ZipSFX, the user would actually pass the parameters to the installer, not to the main exe.
Is there a way to "route" the parameters to the main application? Thank you in advance.