Reputation: 4002
I have Innosetup create a setup.exe. However, if I attach this to an email, people's email anti-malware servers will strip out the exe file attachments.
I can get around this issue by creating a .zip file that contains the exe. I then attach the zip file to email.
Can I get InnoSetup to automate this?
Upvotes: 0
Views: 1196
Reputation: 76693
There is no script option for self-zipping of the output binary as far as I know. But you can make a batch script and run the compilation from command line. Or use a tool like e.g. ISTool
or InnoIDE
, whose allow you to define and run post compilation steps in which you can zip the output binary.
Upvotes: 2