I have a ASP.NET web application. Now I want to create a installer using InstallAware so that my customers just click on the installer and it will be put on the web server as well as configure IIS for the web application Is there any one who can instruct me how to do it? This is the first time I am using InstallAware
Thanks in advance, Mohin
If you have access to InstallAware's
MSICode
, you can use the following code:In the
Define Setup Globals
Section:In the
Perform First Time Install
section, just before callingApply Install
:In your
Perform First Time Install
section, afterApply Install
is done:If you do not have access to
MSICode
, this is still easy to do using the InstallAware Designer.$WWWROOTDIR
does not exist, create it by Right-clicking on "Target Folders" and choosing "Add System Folder", "WWW->WWWRootDir
"This should be enough to have InstallAware setup the IIS website and your application.
If you have common Assemblies, you can directly install them into the GAC by adding them in the Setup Architecture > Assemblies page. The additional advantage is that you can choose to have
ngen
run on them.