user2274463
user2274463

Reputation: 9

Installing SQL server 2005 through windows c# setup project

I have a windows c# application with its setup file. Now I wish to install SQL Server 2005 express edition while the setup of my application is being installed on any computer. Is this possible ? How ?

Upvotes: 0

Views: 353

Answers (2)

Satinder singh
Satinder singh

Reputation: 10198

Yes you can
Add custom action by right clicking setup project --> view --> Custom Actions --> right click Custom Actions --> Add Custom Actions.

Now going to add the prerequisites for your setup project.

Select your setup project, right click and go to properties, then click the Prerequisites button. there u can set url

Upvotes: 0

Mohammad Arshad Alam
Mohammad Arshad Alam

Reputation: 9862

you can set Prequisities to you setup for this.

Check the similar thread

Upvotes: 1

Related Questions