Greetings,
Strictly from within CVI, there isn't a way to do this. However, a simple batch file might be useful.
Create a batch file that looks like this:
msiexec.exe /qn /x your_msi_name.msi
msiexec.exe /qb /i your_msi_name.msi
Put this batch file in the same directory as the rest of the files in your distribution kit, and substitute the name of your generated MSI for the last parameter.
The first line in the batch file silently uninstalls the MSI, whether or not it is already installed. The second line installs the MSI without any user intervention. Note that this will only work on a system that has MSI already installed.
Thanks,
- WesW / NI