Replies: 2 comments 2 replies
-
Scenario: Encrypting variable values using BA
This happens even before the BA is loaded. So, in this case the encryption won't work. Can anyone please comment on this ? Log when using persisted and hidden variable using WiX v3: |
Beta Was this translation helpful? Give feedback.
-
Mark them hidden and handle persistence in the BA. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Scenario: In our WiX v3 installers we use bundle persisted variables to handle serial numbers and store them as engine variables in order to use the same values by default during modify workflow.
To hide these serial number values in the installation logs we mark them as hidden variables.
<Variable Name="FEATUREASERIALNUM" Type="formatted" Value="" Persisted="yes" Hidden="yes" />
In WiX v4 unfortunately a variable can no longer be both Hidden and Persisted. The migration document suggest to handle this behavior by encrypting the values using BA.
Is there any other workaround to hide these kind of variable values in the log instead of encrypting them?
Beta Was this translation helpful? Give feedback.
All reactions