how to create a installer similar to visual studio 2008 setup - c#

i want to know how to create a installer similar to visual studio 2010 setup file.
thanks in advance.

There is an open source script driven project called Wix which you could use here: http://wix.sourceforge.net/
There are some additional MSI installation file utilities.
Hopefully this helps.

WiX toolset is used to create Windows Installer based installers, MSI files. Visual Studio setup uses MSI to make changes to the system. Although MSI is very powerful, it provides limited UI experience, which, however, is quite enough for most setups.
Visual Studio setup uses a regular application that collects information from the user. Then it uses External UI (see MsiSetExternalUI function) to monitor and display progress of the installation.
Look at Setup guidelines and make your setup experience as simple as possible, but not simpler.

Related

Installer that downloads the content after for desktop WPF Applications?

Currently, i'm using the following installer: Microsoft Visual Studio Installer Projects 2022. I've also seen the wix installer (WIX TOOLSET). But none of the installers i've seen has the option (at least I couldn't find in the documentation) to download the full App after you run the installer. I'm developing a self-contained WPF Desktop App that is too big, so I would like the installer to be a smaller size, and then after the user downloads the installer and runs it, then it will download all the files of my WPF App. Does anyone knows a installer for that?
We call that a web installer. You can probably create it with the support for Bundles in Wix, but I don't have a complete example on this so you will need to dig more if you want to use Wix Toolset. I don't know if this is supported with the Microsoft VS Installer Project.
I work on the team building Advanced Installer (disclaimer). In this article we explain how you can create a web installer with just a few clicks. First, you need a create a Professional project (this feature is not available in the Free edition) and add your files in the project.
You can skip most of the steps from the Professional tutorial linked above if you don't need them. TO test your web installer you basically need to add the files and make the configurations described in the first article, in Builds page.
If you're application is split in multiple features, it is highly recommend you enable the option "One CAB per feature" from Builds page, so the installer will only download the binaries corespondent to the features selected by the user, thus reducing the download size and speeding up the installation.

Create Installation Package Including SQL Silent Installation and a C# Winforms Project

I want to create an installer file that includes installer file for SQL Server and a C# project so that user don't have to do it separately.
I have seen a few solutions but want to get recommendations for the best possible solution available in market.
Some previous answers you can check:
List View of Common Windows Installer Deployment Tools
How to create windows installer (with links to non-Windows Installer tools as well)
Commercial deployment tools Advanced Installer and Installshield have some built-in support to install various prerequisites such as SQL Server Express - a quick description here. The open source and free WiX with its Burn component also allows you to install prerequisites, but you have to write XML markup code to accomplish the task. No real GUI apart from Visual Studio as editor (or another editor for that matter).
Some Links:
How to create a MSI file which simply copies a directory to Program Files?
Wrap C# application in .msi installer
Application setup

How Can I Create a Setup File for multiple applications in Visual Studio?

I have a C# application and I have some applications like MySQL, MariaDB etc. that I use with my C# application.I want to make a SETUP file that contains my C# application's EXE file and other applications' (MySQL, MariaDB ..) setup files in one setup file.That setup file will install all of these applications with one setup file.
I have tried with Visual Studio Setup Wizard but I can't manage.Can I do that in Visual Studio?If I can, How can I do that?Should I download a visual studio extension?
You can create Setup by installing WIX tool and Install the Visual Studio extension and follow the WIX syntax
If you need to Include multiple EXE files in Setup you need to refer all the files that u needed in Setup.
If you need to install those setup then you need to create the custom action.
you can create a separate project for a custom action and added the references to the required binaries (ie the Binaries you previously mentioned in tags) and added the corresponding dll formed in the binary tag and called it via CustomAction
It's not clear if you've downloaded and installed the VS 2017 Installer Extension from here:
https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.MicrosoftVisualStudio2017InstallerProjects
which lets you create Visual Studio installer projects (not the setup wizard). I suggest you search for tutorials on setup projects if you're totally unfamiliar with them, such as:
https://msdn.microsoft.com/en-us/library/cc766795.aspx
http://www.c-sharpcorner.com/UploadFile/1492b1/creating-an-msi-package-for-C-Sharp-windows-application-using-a-v/
https://www.red-gate.com/simple-talk/dotnet/visual-studio/getting-started-with-setup-projects/
In general you just drag and drop your files into (say) the Application Folder in the File System view; registry entries can be created using the Registry view. Prerequisites such as SQL runtime support. .NET runtime are added with the setup project's properties, choosing from the list of prerequisites.
This will give you a basic setup with little customization. There might be features you require that Visual Studio setups don't support, so something like WiX will give you a lot more functionality with a steeper learning curve if you've never created an MSI setup file before. I would search for a tool that fits your requirement, and this thread might help:
Best tool to create MSI

How to provide options and control for Custom and complete installation in VS installer UI

I have an Windows C# application for which I will have to create an installer
which would ask user for custom and complete installation.These custom and complete installation options are same application with different feature.
I know to provide options by using Installer UI radio buttons but how to provide control as it takes specific exe for the custom and complete installation respectively.
Or is there any way to achieve this, appreciate if you would provdie step by step procedure.
I am using Visual studio 2013 premium version, MySQL 5.5.
You have different ways, you can do it by configurate in VS. But on this I canĀ“t say much. I would prefer to use a NSIS-File or MS-Build to create an setup.exe
With NSIS you can say all Options etc. which the installer should include.
Here is an NSIS tutorial. Hope that helps.
There is no support for custom dialogs in Visual Studio setup projects - they are limited feature setup projects that do not supply access to the full functionality of Windows Installer. Any installs you see with those Custom and Complete choices (or choices of which features to install) will not have been built with Visual Studio setup installer projects. That means you'll need to choose another tool that meets those requirements, and any others you might have for the install.

free windows installer

I have found a lot of programs to make an installation package for .net application but non of them meet my requirements.
I'm looking for a free application which is able to create installation and uninstallation package and is able to check if net framework and sql 2008 Redistributable is installed if not application should be able to install them first and then start application installation process
Take a look at Wix.
It is free, but the initial learning curve may be a little bit harder then other programms. The output of WiX is a *.msi package.
I recommend Inno Setup - I compared it once with NSIS and found it more usable. It suports scripting, and you will find example scripts for installation of .NET and other redistributables through the search engine of your choice.
Did you try installer, that is shipped with visual studio? If it is very simple, try Wix. Aslo, consider NSIS.
Or Windows Installer?
If you have Visual Studio installed then you can simply create a setup project within your solution. If not, then download from the above link (or fine the appropriate version to download) and utilise the set creation application manually.

Categories