how to create a installer similar to visual studio 2008 setup

◇◆丶佛笑我妖孽 提交于 2019-12-13 16:07:19

问题


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

thanks in advance.


回答1:


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.




回答2:


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.



来源:https://stackoverflow.com/questions/5624122/how-to-create-a-installer-similar-to-visual-studio-2008-setup

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!