Can I create a single file SETUP.EXE from deployment project

  • Thread starter Thread starter Connected
  • Start date Start date
C

Connected

Hi,

Using VS.NET 2003, I would like to deploy my project as a single-file exe.

What I actually get is three files:

Setup.exe
Setup.ini
MyProg.msi

To deploy these as a single file I've zipped them into a self-extracting
zip, but the user still has to find and run setup.exe - very clunky.


Can a single file solution be achieved directly from VS.NET?

Regards,

Vince
 
Connected said:
Using VS.NET 2003, I would like to deploy my project as a single-file exe.

What I actually get is three files:

Setup.exe
Setup.ini
MyProg.msi

To deploy these as a single file I've zipped them into a self-extracting
zip, but the user still has to find and run setup.exe - very clunky.


Can a single file solution be achieved directly from VS.NET?

The MSI file really *is* a single file solution - but only if your
users already have MS Installer 2.0 installed. The exe and ini files
are really just provided to make it easier for people without MSI2 to
get it installed.
 
Back
Top