Installation Incomplete

  • Thread starter Thread starter mashraf
  • Start date Start date
M

mashraf

Hi everyone,

I have created a setup program for my Windows App in
VB.net. When try to install it by double clicking on
setup.exe, the wizard comes up and on last screen it gives
me message "Insatallation Incomplete"
The installer was interrupted before appname was
installed.

The same setup.exe will run to complete and install
seuccessfully on dev machine but not on production machine.

I ran setup.exe several times but not luck. This machine
does have dot net platform installed and there are couple
of asp.net apps running on it.

Any idea what is going on?

mashraf.
 
You can get a (very verbose) log by running your setup this way:
msiexec /i mysetup.msi /l*v mylog.txt

Look from the bottom up for ERROR. You might need to use the Windows
Installer reference on MSDN to understand the error code.
 
Back
Top