Well its been about two weeks since I started my new job at the www.jamwarehouse.com so far its been very
interesting and I am gradually starting to work more on the domain specific stuff.
I have been working with an Application called SetupBuilder to generate an installation.
SetupBuilder is pretty decent but its not without bugs! A few irritating ones are when you remove/replace something and it doesnt save your
change. This can be resolved through using "Save As". I must say Friedrich Linder who wrote setup builder is very helpful and replied in person to my queries within a few minutes. Think he may have some offshore deal or something - with a whole lotta Friedrich Linders.
Late in the process it was decided we need an MSI which the version we have of setupbuilder doesnt generate.
One of the main requirements were that the application should run in silent mode.
From the command line its pretty easy you call into MSIEXEC and pass in a /q command to indicate no UI display for the installer.
etc
MSIEXEC /I mymsi.msi /q
Now this is fine and works but the only problem is that the client would like to click on the MSI and have it install silently.
Its been a while since I worked with MSI so I wipped out Orca and began to search the MSI tables in the hope of finding some silent setting
CustomAction appears to be the most likely to set it in.