I need to be sure that 3 fonts exist on all clients, and push them out if not.
I believe I can use a batch file, such as:
********************************************
if exist %windir%\fonts\ocrb.ttf go to 39
copy OCRB.ttf %windir%\fonts
:39
if exist %windir%\fonts\Code39-Regular-F.ttf go to Free3of9
copy Code39-Regular-F.ttf %windir%\fonts
:Free3of9
if exist %windir%\fonts\FRE3OF9X.TTF go to Exit
copy FRE3OF9X.TTF %windir%\fonts
:Exit
************************************************
I would then run the batch file as a mandatory announcement. Has anyone else accomplished this another way?
Dan
I believe I can use a batch file, such as:
********************************************
if exist %windir%\fonts\ocrb.ttf go to 39
copy OCRB.ttf %windir%\fonts
:39
if exist %windir%\fonts\Code39-Regular-F.ttf go to Free3of9
copy Code39-Regular-F.ttf %windir%\fonts
:Free3of9
if exist %windir%\fonts\FRE3OF9X.TTF go to Exit
copy FRE3OF9X.TTF %windir%\fonts
:Exit
************************************************
I would then run the batch file as a mandatory announcement. Has anyone else accomplished this another way?
Dan