Difference between revisions of "Fonts"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Typo)
m
Line 3: Line 3:
  
 
Not sure how it behaves when a font is already installed on the client.
 
Not sure how it behaves when a font is already installed on the client.
 +
<source lang="xml">
 +
<package id="additional-fonts" name="Additional fonts" revision="1" reboot="false" priority="950" execute="once">
  
<package id="additional-fonts" name="Additional fonts" revision="1" reboot="false" priority="950" execute="once">
 
 
   <install cmd='%COMSPEC% /c copy /Y "%SOFTWARE%\Fonts\*.TTF " "%WINDIR%\Fonts\" ' />
 
   <install cmd='%COMSPEC% /c copy /Y "%SOFTWARE%\Fonts\*.TTF " "%WINDIR%\Fonts\" ' />
</package>
 
  
 +
</package>
 +
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 19:23, 12 February 2008

This is a silent installer for distributing additional fonts. Always be sure to be entitled to use the fonts you are distributing.

Not sure how it behaves when a font is already installed on the client.

<package id="additional-fonts" name="Additional fonts" revision="1" reboot="false" priority="950" execute="once">

  <install cmd='%COMSPEC% /c copy /Y "%SOFTWARE%\Fonts\*.TTF " "%WINDIR%\Fonts\" ' />

</package>