I am using Chef windows_package to install Software called Oxygen in Windows. I am expecting it to install silently without asking any user inputs(take all defaults) but its launching install4j wizard and asking for user inputs like "Please Select your Language"
This is the chef recipe
windows_package 'Notepad++ Installer 64-bit x64' do
source 'http://mirror.oxygenxml.com/InstData/Editor/Windows64/VM/oxygen-64bit.exe'
installer_type :custom
options '/S'
end
Running this recipe launching an install4j window to choose language. I don't want user to enter any input, instead everything should be provided through chef recipe and perform installation.
A quick Google shows they don't support the
/S
option for silent installs but instead have their own system. https://www.oxygenxml.com/doc/versions/18/ug-editor/references/install-installer-command-line-reference.html covers all the details.