I have a Setup Project that needs to be run as a silent installer. The installer used to run and open up another window to set a config setting. New requirements need me to setup up that same config value in silent mode.
So moving forward, I need the MSI to send parameters to a console application that I have already creating and runs in the commit Custom Action.
update.exe /s /v"/CONFIGVALUE"
Thanks in advance!
EDIT
The value is a URL that needs to be updated in the APP.config file. This value was assigned via a winform app that can read and write to the app.config file on commit of the installer. update.exe does not already accept any values. This is an new update to it that I have been trying to figure out.