I have an inno installer exe. At the end of the installation on the 'finish'-page it has a checkbox to visit a web page. I am trying to silently install this without opening the browser page.
i have used setup.exe /SAVEINF="
mySavedConf.inf" to create an installer file.
i have used setup.exe /VERYSILENT /NORESTART /CLOSEAPPLICATIONS /NOICONS /LOADINF="mySavedConf.inf" to execute the silent install successfully.
Sadly in the end the installer does open a url in the default browser despite turning it off when creating the inf file.
contents of the inf file:
[Setup]
Lang=default
Dir=C:\Program Files\lalalala
Group=(Default)
NoIcons=0
Tasks=
Does anybody know what i have to add to prevent this web page from opening?
thanks in advance!