views:

592

answers:

1

Hi All,

I want to install a set of Open Type Fonts as part of my msi istallation, I am using Wix to create the msi.

Any advice?

+1  A: 

You need to specify the directory FontsFolder, and set the TrueType attribute on the file:

<DirectoryRef Id="FontsFolder">
  <Component Id="MyFontsFonts" Guid="...">
    <File Id="font1.ttf" Source="font1.ttf" TrueType="yes" />
    <File Id="font2.ttf" Source="font2.ttf" TrueType="yes" />
  </Component>
</DirectoryRef
marklam
How can tell WiX to ignore installing the fonts if they are already exist on the system ?
essamSALAH