Windows Develop Bookmark and Share   
 index > ClickOnce and Setup & Deployment Projects > installer for my application
 

installer for my application

hi,
I need to create installers for my application in such a way that it has and when i place my cd in the drive it shows a screen with following options

1. Dotnet frame work
2. Sqlserver2005 application and database
3. Finish and Restart

when user click on the dotnet frame work it should install frame work and when he click on the Sqlserver 2005 application and database it should install sqlserver and the database also to be installed into the server.
please help me in doing this.
praveenjakkuva  Saturday, July 25, 2009 9:06 AM
There isn't any built-in support for the is VS setup projects. The general way you do this is to use the Prerequisites button in the setup project and choose the prerequisites you want installing. There are options for SQL Express and .NET FWs. This generates a setup.exe that the user runs, and this installs the prereqs and then your MSI file containing your app. There isn't really much point in having the user click too many buttons when setup.exe will just install whatever is required. You can't install full SQL Server, just in case that's what you're saying - it's a separate priced product.

If a reboot is neededsetup.exe and the MSI install will take care of it. There's no point in doing an unnecessary reboot.
Phil Wilson
PhilWilson  Tuesday, July 28, 2009 7:23 PM
There isn't any built-in support for the is VS setup projects. The general way you do this is to use the Prerequisites button in the setup project and choose the prerequisites you want installing. There are options for SQL Express and .NET FWs. This generates a setup.exe that the user runs, and this installs the prereqs and then your MSI file containing your app. There isn't really much point in having the user click too many buttons when setup.exe will just install whatever is required. You can't install full SQL Server, just in case that's what you're saying - it's a separate priced product.

If a reboot is neededsetup.exe and the MSI install will take care of it. There's no point in doing an unnecessary reboot.
Phil Wilson
PhilWilson  Tuesday, July 28, 2009 7:23 PM

You can use google to search for other answers

Custom Search

More Threads

• Can we force install location?
• Deployment Problem
• VB 2008 clickonce installation
• ? in file path for activex control in Registry
• Can't get custom prereq. for SqlNativeClient to work
• vdproj prerequisites not working
• ClickOnce - Uninstall Error.
• Install a printer with application
• Help with Clickonce and upgrade instance
• installutil.exe fails w/ release compile; successful w/ debug compile