views:

78

answers:

1

Is it possible to create an installer that includes ms sql express?

I currently install ms sql express via setting the setup project's pre-requisites. It outputs 2 files, an msi and a setup.exe. The setup.exe will detect is SQL express is installed and install it. It works great. But now I have to distribute 2 files...

I'd like to combine everything inside the .msi. is that possible?

+1  A: 

You can pack them both in a self-extracting zip file (.exe file extension) that runs setup after extract.

Joel Coehoorn
Yes, e.g. using `iexpress.exe` that comes with Windows.
0xA3