Jump to content

Recommended Posts

Posted

Apologies if this has been stated in other posts.

 

If you want to script an install of fonts on Windows Server 2019 or Windows 10 1809. Older scripts may not work as the default in Windows is now to install fonts per-user. So if you use SCCM the SYSTEM account is used fonts wont install for all users.

 

You need this in a Powershell script to deploy fonts on a PC level.

 

 

Copy-Item -Force "\\\\free3of9.ttf" "C:\Windows\Fonts"New-ItemProperty -Force "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" -Name "Free 3 of 9 Regular (TrueType)" -Value "C:\Windows\Fonts\free3of9.ttf" -Verbose

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...