cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Dan_Holmes
Level 2

Need xpath into property table

Hello,

I have an InstallShield 2009 (Professional) Basic MSI project file in XML format and need to modify some property table entries. I need a proper xpath to, for example, the "ProductCode" GUID in the property table.

I've stumbled around for hours but can't seem to get to the xpath to point to the proper row. Can anyone help?

This gets me close but it isn't good enough.

/msi/table[@name='Property']/row/td

Thanks
Dan
Labels (1)
0 Kudos
(1) Reply
RobertDickau
Flexera Alumni

Something like this, perhaps:

/msi/table[@name="Property"]/row[td="ProductCode"]/td

As an aside, using the InstallShield Automation interface might be a better way to query a project file, even if it's in XML format...
0 Kudos