Jul 15, 2002 #1 Paulus Programmer Sep 25, 2000 16 A1 I want to install a barcode-font (truetype) at every PC in the network. Who can tell me how it works via the logon-script ?
I want to install a barcode-font (truetype) at every PC in the network. Who can tell me how it works via the logon-script ?
Jul 15, 2002 #2 OzDog MIS Jan 10, 2002 192 GB You will need to first copy, and then open the file to register it properly. You can add a section like this to a standard logon script: if exist %systemroot%\fonts\font.ttf goto SkipFontCopy xcopy \\server\share\font.ttf %systemroot%\fonts start "%systemroot%\font\font.ttf" :SkipFontCopy This will use the system variable "SystemRoot" to determine the correct path (just in case it's not "C:\winnt". The only annoying part is that it opens the font up in the middle of the screen. This will, however, verify that it is in properly. Cheers, Sam Upvote 0 Downvote
You will need to first copy, and then open the file to register it properly. You can add a section like this to a standard logon script: if exist %systemroot%\fonts\font.ttf goto SkipFontCopy xcopy \\server\share\font.ttf %systemroot%\fonts start "%systemroot%\font\font.ttf" :SkipFontCopy This will use the system variable "SystemRoot" to determine the correct path (just in case it's not "C:\winnt". The only annoying part is that it opens the font up in the middle of the screen. This will, however, verify that it is in properly. Cheers, Sam