Fonts Intalling

Common questions about using Actual Installer.
Post Reply
Eytan
Posts: 11
Joined: Sun Sep 01, 2013 8:09 am

Fonts Intalling

Post by Eytan »

ggrewe
Posts: 25
Joined: Mon Nov 30, 2015 5:50 pm

Re: Fonts Intalling

Post by ggrewe »

I have had the same problem, cannot get any fonts to install. As a workaround, I have written a VB script to runs post install and this solves my issue. Hopefully, fonts can be installed and the problem is resolved in some future release.

Code: Select all

Set ofso = CreateObject("Scripting.FileSystemObject")
SourceFolder = ofso.GetParentFolderName(Wscript.ScriptFullName)

Const FONTS = &H14&

Set objShell  = CreateObject("Shell.Application")
Set oSource   = objShell.Namespace(SourceFolder)
Set oWinFonts = objShell.Namespace(FONTS)

Set rxTTF = New RegExp
rxTTF.IgnoreCase = True
rxTTF.Pattern = "\.ttf$"

FOR EACH FontFile IN oSource.Items()
    IF rxTTF.Test(FontFile.Path) THEN   
        oWinFonts.CopyHere FontFile.Path
    END IF
NEXT
Leo
Site Admin
Posts: 455
Joined: Fri Jan 22, 2010 12:40 pm

Re: Fonts Intalling

Post by Leo »

New version of Actual Installer handles font installations.
Just select the menu "Tools \ Add Font" and follow the instruction.
Leo,
Actual Installer Team
https://www.actualinstaller.com
Post Reply