Net Citizen
Net Citizen

Reputation: 5334

Is it possible to create an installer that includes ms sql express? (wihtout separate exe)

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?

Upvotes: 1

Views: 304

Answers (1)

Joel Coehoorn
Joel Coehoorn

Reputation: 415600

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

Upvotes: 2

Related Questions