Hello
I’m using smartupgrade with a INstallshield tuner package.
I want to add additional parameters to the msiexec file. But there is a problem.
These are the parameters :
“D:\Tuner\lotus_su\New Package\Lotus Notes 8.0.2.msi” /s /v"ALLUSERS=1 /i"Lotus Notes 8.0.2.msi" TRANSFORMS=“Lotus Notes 8.0.2.mst” /qn /qb+"
Can anyone help me to find the error in this string?
Thanks in advance
Greetings
Lainkes
Subject: Answers
It looks like you are mixing setup.exe command line options and msiexec options all together.
You have 2 references to Lotus Notes 8.0.2.msi in your string.
“D:\Tuner\lotus_su\New Package\Lotus Notes 8.0.2.msi” /s /v"ALLUSERS=1 /i"Lotus Notes 8.0.2.msi" TRANSFORMS=“Lotus Notes 8.0.2.mst” /qn /qb+"
You can’t use both /qn and /qb+, they are the same option
Are you passing this command line to msiexec? or setup.exe?
msiexec /i “Lotus Notes 8.0.2.msi” ALLUSERS=1 TRANSFORMS=“Lotus Notes 8.0.2.mst” /qb+
setup.exe /s /v “ALLUSERS=1 TRANSFORMS=“Lotus Notes 8.0.2.mst” /qb+”