windows - In wix repairing a setup throws an error -


to repair uninstall condition:

<condition message="true">(launchfromexe = "true")</condition> 

this condition throws install error. use below condition:

<condition message="true">launchfromexe</condition> 

i able repair setup.

the first example requires launchfromexe property set string value "true". second condition requires launchfromexe set value @ (i.e. value needs non-blank). in second case, in repair operations setting launchfromexe value (maybe initialized "false") , working.

in old blog entry of mine, mention why should consider adding installed or launch conditions. recommend doing same above.


Comments

Popular posts from this blog

Java sticky instances of class com.mysql.jdbc.Field aggregating -