Creating a silent installer for a MSI

与世无争的帅哥 提交于 2019-12-04 21:12:14
Rick Bowerman

1) Yes - a bootstrapper is what you are looking for. Burn.exe comes with WiX, more information here

2) Yes to using WiX I know nothing about NSIS.

3) If you have nothing you need to change in the MSI then you could just use WiX to create the bootstrapper that would install your existing MSI.

Bonus) WiX lets you fully edit the install dialogs including logos, licenses, etc. More information here.

Extra thoughts: silent installation is part of MSI; your current installer can be installed silently by executing

msiexec /i <your msi> /quiet

in a command prompt, the command prompt may need admin privileges.

If you need to make changes to the existing msi look at using Dark.exe again a component of WiX that will decompose your existing MSI file into .wxs files. This post may also prove informative on moving to WiX.

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