Can I get ProductCode from InstallShield executable?

I can programmatically query MSI and get properties like ProductCode. Is there a way to request the Installshield executable to get the MSI properties that it contains?

+3
source share
2 answers

I assume that the installshield executable is its own self-extracting executable. First, it extracts the files to a temporary folder, and then starts the setup. If exe supports a command line switch to extract all files, you can make it extract from your program and then query MSI for the product code.

+2
source

:

Setup.exe /v"/l*v C:\MSI.log"

ProductCode .

0

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


All Articles