cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Snoopstah
Level 7

InstallScript and IS_SQLSERVER_SERVER property

I use the MsiGetProperty function to obtain the value of IS_SQLSERVER_SERVER throughout my installscript project. By way of MessageBox I see that the value is correct all the way though OnFirstUIBefore and OnMoving.

I notice in OnFirstUIAfter the value no longer has any data! Why is this?
If I look in the msi verbose log file I see that IS_SQLSERVER_SERVER has a value right through so I am not sure why at OnFirstUIAfter it is no longer populated.
Labels (1)
0 Kudos
(2) Replies
RobertDickau
Flexera Alumni

That event might occur during deferred mode, in which case you'll need to go through CustomActionData to get a property's value; searching the KB and these forums for "CustomActionData" will return some techniques you can use.
0 Kudos
Snoopstah
Level 7

Great, that will take care of it!
0 Kudos