Reputation: 2247
I am new to InstallShield and i am trying to create my first installer. I have (i think) a couple of basic requirements that i am finding hard to obtain information one:
Upvotes: 2
Views: 5252
Reputation: 10687
InstallShield has both the "INI File Changes" view, and the "XML File Changes" view. They both have basically the same goal -- to allow you to create/modify/remove settings data at run-time; one for INI formatted files, the other for XML. The XML support is impressive -- you can do XPath expressions, and all the values can be localized. If you don't know the values you want to use at the time of creation of the installer, you can represent the values with properties, and then populate the properties at run-time. Between the two, I recommend using the XML File Changes.
Sure, this is more of an MSI question than an InstallShield question. You would reference the files you want to manipulate using the paths in the Directory table. If you don't know exactly the names of the files, you could use the "System Search" capability in InstallShield to search for the file or Registry entry and then put that value in a property.
Upvotes: 3