Windows installer: Silent install options
jger3110 opened this issue · 4 comments
Hi there,
would it be possible to release the next version for Windows with an added option to install the software silent? It seems the Windows installer is created with NSIS so an added option for the switch /S would be amazing.
We are deploying the tool to a few PCs in our network using software deployment tools and not doing anything manually on each PC but instead using the unattended installation with the /S switch would by great.
Thanks in advance
Joerg
I have not had time to test this yet, but as far as I can see, NSIS should support this out of the box. What happens currently if you run the installer with that flag?
Somehow my reply by email got lost, reposting it again...
Hi,
that's a good idea. But good things will only happen if someone does them 😉
According to the internet, the /S switch should work out of the box. But due to whatever reason, the VisiCut installer just does nothing when called with /S.
Feel free to develop the needed changes. Here are some links to get started:
https://github.com/t-oster/VisiCut/blob/master/distribute/windows/installer.nsi
https://github.com/t-oster/VisiCut/wiki/Development:-Getting-started
(Note that you can also use a Linux machine for building the Windows installer.)
NSIS silent mode:
https://nsis.sourceforge.io/Docs/Chapter4.html#silent
How to debug NSIS: https://nsis-dev.github.io/NSIS-Forums/html/t-325521.html
General NSIS programming advice: https://nsis.sourceforge.io/Docs/Chapter2.html
Maybe a first step would be to start from scratch with some NSIS MUI2 Example from the internet, see if /S works there, and if yes, then try to find out which difference to the VisiCut installer is relevant. If no, it's a bug in NSIS itself.
https://github.com/kichik/nsis/blob/master/Examples/Modern%20UI/Basic.nsi
Regards
Max
Sorry for the late reply, I answered by mail and just now checked to see that my reply is nowhere to be found...
By email I wrote:
NSIS states it accepts /S, /SD and /D as parameters for different aspects of the silent installation. Your setup does not accept any of those, it just starts the installer GUI and awaits user input (Press Next to continue...).
The expected behaviour would be for no GUI to show up and just install the software to the default path. If I add the parameter /D=path it should install silentely to the path I added.
I had the chance of reading a little bit of the NSIS documentation and it says you would need to specifically add a section to your installer script.
This is the documentation I found.
https://nsis.sourceforge.io/Which_command_line_parameters_can_be_used_to_configure_installers%3F
Thanks for taking the time to look into this.
Greetings
Joerg
As I wrote above, you are invited to start investigating where the problem is, as probably you are currently the only one who needs it :-)
From a first look at the file, the VisiCut installer does nothing special, so I don't immediately see why the silent install does not work. The next steps would be to find out:
- if the NSIS MUI2 example works correctly with /S
- if yes, which part of the VisiCut NSIS file is problematic compared to that NSIS example? (try changing the working example step by step to make it more similar to VisiCut, until you find the point where it starts failing)
- if no, how it is supposed to be done (ask on the NSIS forums for a working example, or try even simpler NSIS example files without MUI2)