Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey Guys, I have a requirement in work to create an installer application that will set up programs on an application server during new deployments. The program will need to install 2 third party components and insert things like registry settings etc.... I am open to suggestions on the best way to achieve this so any input is very much appreciated. Thanks very much

What I have tried:

I have looked in to some automated tools but they seem to be for specific applications.
Posted
Updated 8-Sep-16 2:15am
Comments
[no name] 8-Sep-16 8:12am    
The "best" way to achieve what? Best compared to what? Read the documentation for whatever installation creation package you are using and follow the directions contained within the help file.

1 solution

So why not just create a ordinary MSI-Package (Windows-Installer) e.g. you can create one with the free wix toolset WiX Toolset[^]

Then execute with quiet option:

msiexec /i c:\path\to\package.msi /quiet
 
Share this answer
 
Comments
frostcox 9-Sep-16 3:06am    
Thanks mate I will take a look through the Wix toolkit and have a look at what you suggested.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900