Convert installscript to Basic MSI

Is there a way to convert InstallScript to Basic MSI in installshield 2010?

+4
source share
4 answers

According to this documentation from Flexara, their Repackager product can convert from pure InstallScript to Basic MSI. Repackager is only available in InstallShield Premier or AdminStudio.

I have never used the product on my own, so I cannot vouch for its effectiveness.

+2
source

Installscript projects can be classified as a LEGACY installation method. Basic MSI is the standard way to install applications on Windows computers.

The Installscript Engine is responsible for handling the installation logic. This is very similar to the old SCRIPT-BASED installations, which were the only way to install applications until 2000.

The Windows Installer engine (or service) runs the installation logic. It reads the MSI database and performs the appropriate steps. Therefore, Basic MSI is the TRANSACTIONAL installation procedure.

No ONE-TO-ONE cards are available for Installscript and Basic MSI projects. Repackaging is the only way out if writing Basic MSI from scratch is not an option.

+2
source

Installscript can be captured by Wise Package Studio by pre-scanning and then scanning messages. Basically, you pre-scan your system, which scans the registry, files, versions, odbc, etc. Then you install your software and do a post-scan, which does the same thing as a pre-scan. This method compares the two to find out what changes you have on your system.

Another method is to run the program on the first call, then click Start> Run>% TEMP%, then click OK. Keep track of this directory for any MSI files.

If you get .msi, you can use "Msiexec.exe / i nameOfFile.msi / qb" on the command line to silently install.

I assume you have a system administrator. Your question is great, I hope that I was able to add my 2 cents and contribute.

Known Software: Wise Package Studio. AutoIT. SMS installer (in worst cases)

0
source

I found in this article , it should show you how you can convert your MSI Installscript project to Basic MSI relatively quickly by opening MSI or compiled MSI in " wizard mode " from the "Open Project Dialog".

I have not tested it, but it should do the job. I'm not sure if it will convert everything correctly, but it is probably good enough so that you can manually clear the rest.

0
source

Source: https://habr.com/ru/post/1338448/


All Articles