Mr_M_Cox Posted September 7, 2007 Posted September 7, 2007 i have a new font that i need to send out to every machine on my domain (Win server 2003) any one know of a simple way of doing this
Geoff Posted September 7, 2007 Posted September 7, 2007 Startup script that contains: Copy \\someserver\someshare\somewhere\font.fon %WINDIR%\fonts\font.fon
Mr_M_Cox Posted September 10, 2007 Author Posted September 10, 2007 cheers geoff but doesnt the font then have to be installed rather than just left in the font folder?
Guest Posted September 10, 2007 Posted September 10, 2007 Take alook here http://www.edugeek.net/index.php?name=Forums&file=viewtopic&t=4851&highlight=fonts
ICT_GUY Posted September 10, 2007 Posted September 10, 2007 It does and the only way I found to do it was to package it as an msi. Either way its a lot of hassel to install one font.
Geoff Posted September 10, 2007 Posted September 10, 2007 cheers geoff but doesnt the font then have to be installed rather than just left in the font folder? My bad, here's a revised batch file (copying and pasting some of the bits from sysmans script). xcopy \\someserver\someshare\somewhere\font.ttf %WINDIR%\fonts\font.fon /C /I /S /E /H /Y /Q reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" /v "Some Font (TrueType)" /t REG_SZ /d "font.ttf"
ICT_GUY Posted September 10, 2007 Posted September 10, 2007 cheers geoff but doesnt the font then have to be installed rather than just left in the font folder? My bad, here's a revised batch file (copying and pasting some of the bits from sysmans script). xcopy \\someserver\someshare\somewhere\font.ttf %WINDIR%\fonts\font.fon /C /I /S /E /H /Y /Q reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" /v "Some Font (TrueType)" /t REG_SZ /d "font.ttf" Nice.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now