Deploy two fonts CRENZO.ttf & Michroma-Regular.ttf

Hi Team,

We have to deploy two fonts CRENZO.ttf & Michroma-Regular.ttf in our infra. For this we have create below custom fixlet :-

I made a folder named Fonts on the desktop and put the .ttf files in that folder.

In the BES Console, I went to the “Wizards” menu and choose “Windows Software Distribution Wizard”.

I choose the folder option and browsed to the folder “Fonts” on the desktop, next, next, next, next, Finish.

In the actions tab, I modified the Action Script. Removed the line “wait __Download\setup.exe” replace it

copy __Download\Fonts\CRENZO.ttf “C:\Windows\Fonts\CRENZO.ttf”

copy __Download\Fonts\Michroma-Regular.ttf “C:\Windows\Fonts\Michroma-Regular.ttf”

But it getting failed, Need your support ion this.

See posts by @JasonWalker in this thread Need to install Custom Windows Fonts

1 Like

Final Solution got it with the help of technical specialist Michael ( Philippines).

begin prefetch block
add prefetch item name=CRENZO.ttf sha1=XXXXX sha256=yyyyyyyyyyyyy size=50636 url=http://127.0.0.1:52311/Uploads/Repository/CRENZO.ttf
end prefetch block

copy “__Download\CRENZO.ttf” “C:\WINDOWS\Fonts\CRENZO.ttf”

createfile until end-reg-edit-commands
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
“CRENZO.ttf (TrueType)”="CRENZO.ttf"
end-reg-edit-commands

move __createfile setup.reg
wait regedit /s setup.reg

Final Solution got it with the help of technical specialist Michael ( Philippines).

begin prefetch block
add prefetch item name=Michroma-Regular.ttf sha1=XXXXXX sha256=YYYYYYYY size=58528 url=http://127.0.0.1:52311/Uploads/Repository/Michroma-Regular.ttf
end prefetch block

copy “__Download\Michroma-Regular.ttf” “C:\WINDOWS\Fonts\Michroma-Regular.ttf”

createfile until end-reg-edit-commands
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
“Michroma-Regular.ttf (TrueType)”="Michroma-Regular.ttf"
end-reg-edit-commands

copy __createfile setup.reg
wait regedit /s setup.reg​