I want to create a setup which requires Microsoft SQL Server 2005 and .NET Framework 3.5. If this software isn’t installed, the Setup should offer the user to install them now.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t know if you can include either of the two in the installation package itself.
However, you can tell the setup app to check if the .Net Framework and SQL Server 2005 Express Edition are installed. If they are not, it will download and install them and then continue with the installation of you application. Of course, that does require an Internet connection.
These options are available when you right-click on your setup project, select Properties, and then click on the Prerequisites button.
Note that like Paddy said, SQL Server 2005 is a different story.