Page 1 of 1
Silent mode for Branded Installer Parameters
Posted: Sun Sep 17, 2017 6:29 am
by indyrhett
Is there a way to pass parameters using a /VERYSILENT based install that will also set the proper variables for the default HTTP/S Port #'s and if to disable the built in HTTP server?
Thanks,
Rhett Price
IndySoft
Re: Silent mode for Branded Installer Parameters
Posted: Fri Sep 22, 2017 6:01 pm
by John
Hello,
When you are using /VERYSILENT nothing is displayed.
However, you can change any of the defualt parmeters setting using your own "customization" requirement.
To do so, your own setup program must install on C:\ a program named aftersetup.exe
The setup is program to detect at the very end of the setup:
IF file exists C:\aftersetup.exe
THEN run it before to close the setup program
If I take the example of seting a differnt HTTP port number (8080 is this example), your program aftersetup.exe will:
Edit and change ...\files\AppControl.ini
http=on
httport=80
Changed to
http=on
httport=8080
And change the registry
HKLM/Software/Digital River/JWTS/porthttp = 8080
Kind regards
John
Re: Silent mode for Branded Installer Parameters
Posted: Fri Sep 22, 2017 11:20 pm
by indyrhett
Thanks John, will give it a shot!
- Rhett