Reputation: 791
I have created dummy MSI using wix and used APPDIR property with one folder path for installed location .I imported this msi in to install shield and installation got success via install shield installer but I want to change the APPDIR value through install shield installer UI . Please give me the right way to proceed in install shield .How to interact with msi in installed?
Upvotes: 1
Views: 804
Reputation: 708
If you're calling the MSI directly from the command line it is just a matter of adding PROPERTY=VALUE
on the command line after the install switches.
msiexec.exe /i setup.msi PROPERTY1="value 1" PROPERTY2=value2
If you're calling the InstallShield bootstrapper (setup.exe) then you'll have to wrap it in a /v switch.
setup.exe /v"PROPERTY1=\"value 1\" PROPERTY2=value2"
Upvotes: 1