1
votes

I have a custom action that dynamically generates an XML file based on installed files (can't change this utility). The custom action must execute after "InstallFiles".

I would like to use XMLFile to make other modifications to the XML file based on other features installed.

Any suggestions on how to schedule custom action between "after=InstallFile" and "before "XMLFile" ?

1

1 Answers

1
votes

You can do something like

<Custom action="CustomizingXMLData" after="InstallFiles">Condition</Custom>

<Custom action="XMLFile" after="CustomizingXMLData">Condition</Custom>