Lymphatus / caesium-image-compressor

Caesium is an image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats. You can quickly reduce the file size (and resolution, if you want) by preserving the overall quality of the image.
https://saerasoft.com/caesium
GNU General Public License v3.0
3.47k stars 209 forks source link

Add a Silent Install Option: MSI or Silent Switch for EXE #218

Closed thobou-gly closed 1 year ago

thobou-gly commented 1 year ago

I need to install the application silently without user interaction.

I would like an MSI installer or Silent Switches that work with the EXE installer.

Lymphatus commented 1 year ago

The provided installers use Inno Setup, so you can run it without any prompt using this flags while launching the .exe: /VERYSILENT /SUPPRESSMSGBOXES /SP- /NOICONS

This will be completely silent. You can use /SILENT instead of /VERYSILENT to show only a progress dialog.

Full docs can be found here.