After looking with a fresh pair of eyes this morning I realized the
error might have to do with something else; the actual line looks more
like:

<?define pathVar =
"[%%CommonProgramFiles]\path\to\folder;[%%CommonProgramFiles(x86)]\path\to\folder"
?>

and the error also goes away when I remove the "(x86)" but leave the
square brackets unescaped, could the parenthesis be causing the error?

The value that gets inserted into the MSI when we get the error is:

[%CommonProgramFiles]\path\to\folder;[%CommonProgramFiles(x86)]\path\to\folder;[~]

And you're saying that an equivalent statement would be:

[CommonFiles64Folder]\path\to\folder;[CommonFilesFolder]\path\to\folder;[~]

which would be in the same order as the statements above, correct?
That version might be simpler as it goes through without error.

Thanks!
John


On Sun, Sep 26, 2010 at 1:18 PM, Bob Arnson <b...@joyofsetup.com> wrote:
>  On 24-Sep-10 19:36, John Fry wrote:
>> as it gives: error LGHT0204 : ICE03: Invalid format string; Table:
>> Environment, Column: Value, Key(s): OURPROD_TGT_PATH.GUID_HERE
>
> What value ends up in the .msi?
>
> You can fix the problem using built-in MSI properties, like
> CommonFilesFolder.
>
> --
> sig://boB
> http://joyofsetup.com/
>
>
> ------------------------------------------------------------------------------
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing.
> http://p.sf.net/sfu/novell-sfdev2dev
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to