Pass parameter to app config file during MSI installation - Advanced Installer -


i have created msi package using advanced installer. contains app config have pass siteurl varies depending on location. need pass siteurl app config when msi installed . please me it. new advanced installer

you can check online user guide advanced installer, has lot of useful info. example article on importing , editing xml config files.

or how add custom dialog , write in system values captured end users.

edit: additional answer regarding command line

you can run installation silently command line still see message box saying package built trial. not see standard msi dialogs. , trial messages gone once purchase license advanced installer.

please note command prompt window (cmd.exe) must launched administrator, if installation installing per-machine (i.e. write in program files or hklm registry hive). otherwise installation fail silently , not know why, because on silent installation os not show error message.

here command line example:

msiexec.exe /i c:\setup\installer.msi /qn id="235424" siteurl="www.example.com"

please note not recommended use private properties, i.e. properties lower case letters in name, recommend public properties, example: site_url.


Comments

Popular posts from this blog

c# - Better 64-bit byte array hash -

webrtc - Which ICE candidate am I using and why? -

php - Zend Framework / Skeleton-Application / Composer install issue -