Silent mode for Branded Installer Parameters

Get help with installation and setup problems
Post Reply
indyrhett
Posts: 43
Joined: Wed Aug 02, 2017 10:56 pm

Silent mode for Branded Installer Parameters

Post by indyrhett » Sun Sep 17, 2017 6:29 am

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
Attachments
Screen Shot 2017-09-17 at 2.26.22 AM.png

John
Posts: 84
Joined: Sun Sep 30, 2012 7:10 am

Re: Silent mode for Branded Installer Parameters

Post by John » Fri Sep 22, 2017 6:01 pm

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

indyrhett
Posts: 43
Joined: Wed Aug 02, 2017 10:56 pm

Re: Silent mode for Branded Installer Parameters

Post by indyrhett » Fri Sep 22, 2017 11:20 pm

Thanks John, will give it a shot!

- Rhett

Post Reply