WIX: saving user input in xml file

I want to show a user dialog in which there will be two text fields. After the user types this information (and clicks on), I want to save the data in an XML file.

How can i do this?

+3
source share
1 answer

You have two options:

  • create a custom pending action that creates the file and adds all user data. It is very simple if you can use managed user actions (DTF). Note that you will have to delete the file that you created during the uninstall and rollback scripts!
  • xml XmlFile/XmlConfig, , XPath. xml , .

Wix . http://www.tramontana.co.hu/wix/index.php

, .

+4

Source: https://habr.com/ru/post/1791414/


All Articles