jamesw
Member
Registered: 28th Jun 02
Location: Station Town, County Durham
User status: Offline
|
easy to batch it, but then its how are you going roll it out and check if the machine already has it? Example batch below
copy filename.ttf %windir%\fonts\
reg add "hklm\software\microsoft\windows nt\currentversion\fonts" /v FontNameHere /t REG_SZ /d filename.ttf
Are the users a member of the admins group? If not could be done by startup script on the PC, do the machines already have a startup script specified?
Alternativly you could actually run the batch from say your machine and use a "for /f tokens" loop to go through a list of machine names you give it and output results to a log (presumably some would be missed due to being turned off etc)
|