Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello,
i am new in .net application. I have create my vb.net windows application with sql server database. i want to deploy this application to another pc which not having .net and sql server install.. so please tell me step by step procedure to do it.
Posted

If you have Visual Studio 2010 or 2012, download and install the free InstallShield Limited Edition. Create a new project in your Solution. In the Add New Project dialog, select "Other Project Types", then select "Setup and Deployment", then select "InstallShield Limited Edition Project". Replace the name "Setup1" with a name something like "Setup_YourProjectName" and Click OK. Go through the wizard to specify the actions of the setup program to be generated.

It looks like you can use the "Application Files" feature of InstallShield Limited Edition to put files for SQL Server database on another PC.

Unfortunately, it doesn't look like you can generate a SETUP.EXE to do the install of SQL Server unless you buy the upgrade to the full version of InstallShield.

If you don't want to buy the full version of InstallShield, you could add additional code to your program to have your program run the SQL Server installation the first time it is run.
 
Share this answer
 
v2
You should make use of Google and MSDN for simple questions like this.

http://msdn.microsoft.com/en-us/library/vstudio/wx3b589t(v=vs.100).aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900