Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WiX SetProperty - What are the possible values for Before/After attributes

Don't know why but I'm finding it difficult to track down what standard values could be used for the Before or After attributes of a WiX SetProperty declaration.

I'm aware of the following two, but I'm looking for a much more exhaustive list.

  • AppSearch
  • CostFinalize

Here's an example of it in use:

<SetProperty Id="INSTALLFOLDER.WEBSITECLIENT" Value="[INETPUBWWWROOT]\[VIRTUAL_DIR_VAL]" Before="Install" />

The manual / documentation page has nothing on it.

like image 823
Jaans Avatar asked Sep 08 '25 17:09

Jaans


1 Answers

This link will give you the suggested Install Execute Sequence and you can use any you want.

http://msdn.microsoft.com/en-us/library/windows/desktop/aa372038%28v=vs.85%29.aspx

like image 74
Natalie Carr Avatar answered Sep 10 '25 06:09

Natalie Carr