var fDesc=new Array(); fDesc[0] = "MSI is a platform created by Microsoft. The need came about because there was no other way to easily create an installation program without either using the included Visual Studio tools or buying something like Installshield.

Then came along MSI as the way to install software. It was new and different so I set forth along the path of creating installers for my own software.

msilaunch is a simple utility that takes an existing Windows Installer (MSI) file and allows the the user to select files being installed to be launched, i.e. run if a program or opened in the associated application.

msilaunch is especially useful when using MS Visual Studio Installer which does not allow custom actions to be entered."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }