Spike
Spike

Reputation: 170

WIX Custom Actions

I need to create custom actions in WIX for my MSI. I want to be able to read from a txt,xml or ini file and pass them through into a configuration file.

My problem is I cannot use .net, as the scope for the MSI is to not have any .net interaction and I understand jscript is not a good idea for several reasons.

What options if any do I have left?

Upvotes: 0

Views: 137

Answers (1)

Dusan Plavak
Dusan Plavak

Reputation: 4579

So basically your options:

Custom c++ actions

XML wix Util tool

Ini wix Util tool

Upvotes: 1

Related Questions