cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jcpohusk
Level 4

Property set in UI sequence not honored in Exec sequence

I add MyTestProperty in Property Manager and initialize to the value true.

In the User Interface sequence (before the SetupProgress dialog):

I set MyTestProperty via a Set Property custom action to the value false.

I display MyTestProperty via InstallScript custom action using SprintfBox() and I see that the value is false.


In the Execute sequence (first action):

I display MyTestProperty via InstallScript custom action using SprintfBox() and I see that the value is true.


Is there no way to set a property in the UI sequence and be able to use that value in the Execute sequence?
Labels (1)
0 Kudos
(2) Replies
jcpohusk
Level 4

Works if I use public property MYTESTPROPERTY instead.
0 Kudos
girishkatti123
Level 7

the property set in UI sequence will not be passed onto exec sequence.
Use SecuredCustomProperty to get the value moved from UI to Exec Sequence.
0 Kudos