This doesn't feel like a good question, but please bear with me for a moment.
To put it into perspective, I am using Remember Pattern to save CMD line input property values, and have encountered an issue to schedule my 25+ custom actions to save CMD line supplied properties before AppSearch, as Remember Pattern rely on CMD supplied property values saved before AppSearch. The error message I got looks like this:
error LGHT0179: The InstallUISequence table contains an action
'SaveCmdLine_SERV ICE_ACCOUNT' which cannot have a unique sequence
number because it is scheduled before or after action 'AppSearch'.
There is not enough room before or after this action to assign a
unique sequence number. Please schedule one of the actions
differently so that it will be in a position with more sequence
numbers available. Plea se note that sequence numbers must be an
integer in the range 1 - 32767 (inclusive).
Upon inspection MSI compiled using Orca, the Sequence for AppSearch is 50. It's hard to find documentation about MSI Sequence table if anything at all, but according to link from this SO quesion, AppSearch should have a Sequence of 400. The workaround I am using is to shift AppSearch to a larger sequence number upon inspection of the generate MSI using Orca. Which seems Ok.
But 50 is quite a low number, why it is set to 50 instead of 400? Is it controlled by Windows Installer API or Wix?
Update: After update AppSearch to sequence 400, I encounter an issue where using the following code using bootstrap to require .Net 4.5 will fail.
<Chain>
<PackageGroupRef Id="NetFx451Redist" />
<MsiPackage Name="$(var.OutputName).msi" SourceFile="MyInstaller.msi" DisplayInternalUI="yes" />
</Chain>
Upon inspection, look like I have to schedule LaunchConditions
from sequence number 100 to sequence number 600 so that it still happens after AppSearch
, so that the check .Net framework pre-request still working. I guess that's probably (one of) the reason why AppSearch
was scheduled so early by WiX.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…