Reputation: 501
Is there option in .Net which can be used as a custom installer (which should have custom forms during installing, registry entry, etc.) with auto update feature.
thanks in advance!!
Upvotes: 2
Views: 1748
Reputation: 11013
Another free alternative for creating MSI packages fast and easy would be Advanced Installer, the "Simple" project type, the other ones require a commercial license. It has a VS add-in that automatically integrates when you install it, for VS 2010 and 2012, and also supports automatic command line builds.
It also has a Dialogs Editor, but this requires you register the application.
Upvotes: 1
Reputation: 27322
Have a look at Visual Studio Installer Deployment on the Microsoft site. This is a large section with many articles.
If you want to modify the install interface have a look at this section: Customizing Windows Installer Packages
Upvotes: 1