How to Run a .msi file in a LabVIEW Application Installation
By Ralph - Last updated: Saturday, January 30, 2010 - Save & Share - Leave a Comment
There is no support of the running of .msi files in the options in the installation of a LabVIEW application. But we can file other ways to do it.
Because installation only support *.exe or *.bat file to run after in LabVIEW application’s installation, so we can work around it with one of following methods:
First one, just create a .bat file which make the .msi file to run.
Second one, create a .exe file with LabVIEW VI which runs the .msi file with systemexec.vi, and call this .exe in the application installation.
Anyone of these two methods will work!
Related posts:
- How to Change Combo Box at Run Time in LabVIEW It will be very useful if we can change the...
- How to Run Several Instances of a VI at the Same Time in LabVIEW Sometimes, it needs to run several instances of a VI...
- How to Create a Programmatically Changed Text Label In LabVIEW In LabWindows/CVI, we can create a free label text control...