SCCM - Deploy several fonts

Sokoban 971 Reputation points
2023-06-09T13:31:20.9166667+00:00

Hi

I want a help to deploy many fonts to clients. I have found that ,

https://byteben.com/bb/how-to-deploy-fonts-with-memcm/

but its working but its for only for one font ...

Please help me :-)

Microsoft Configuration Manager
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Youssef Saad 3,401 Reputation points
    2023-06-09T14:32:47.1233333+00:00

    Hello Sokoban,

    In the link provided, you have just to adapt your PS install script with the following: First command will copy all necessary files from your DP to C:\Windows\Fonts, then you need create the related entries in the following registry key path: HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts.

    You can also try with the following batch script if you want and deploy it as an application:

    @echo off
    
    set "fontsFolder=C:\Path\to\Fonts\Folder"  REM Specify the folder where your font files are located
    set "fontsDestination=%SystemRoot%\Fonts"  REM Destination folder for installing fonts (Windows Fonts folder)
    
    for /r "%fontsFolder%" %%G in (*.ttf, *.otf) do (
        echo Installing font: %%~nG
        copy /Y "%%G" "%fontsDestination%" > nul
    )
    
    echo All fonts installed successfully.
    

    Regards,

    Youssef Saad | Blog: https://youssef-saad.blogspot.com/ | LinkedIn

    2 people found this answer helpful.

  2. Sokoban 971 Reputation points
    2023-06-12T07:25:36.94+00:00

    I have realize the script below is working with several fonts :-)

    Solved


  3. Sokoban 971 Reputation points
    2023-06-15T10:28:52.7966667+00:00

    See above :-)