You did ask for an easy way. Templates are easily the best way to enforce
company standards. The alternative is to update 300 PCs!
If you have setup your network for users to share a startup folder then you
could create a global add-in for this folder containing the macro
Sub AutoExec()
Dim sTemp As Document
Dim sPath As String
sPath = NormalTemplate.Path
MsgBox sPath
ChangeFileOpenDirectory sPath
Set sTemp = Documents.Open(FileName:="Normal.dot")
With sTemp.Styles(wdStyleNormal).Font
.Name = "Arial"
.Size = 10
End With
sTemp.Close SaveChanges:=wdSaveChanges
End Sub
This will reset the normal template to Arial 10 point whenever Word is
started, but it would irritate the hell out of me
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site
www.gmayor.com
Word MVP web site
http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Thony wrote:
> This is not what I mean. Our users are not to clever as I may say. It
> has to be an solution where there is no action required from the end
> users.
>
> "Graham Mayor" wrote:
>
>> Provide a shared document template (or templates) set-up as you want
>> and instruct users to create their documents from that.
>>
>> --
>> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>> Graham Mayor - Word MVP
>>
>> My web site www.gmayor.com
>> Word MVP web site http://word.mvps.org
>> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>>
>> Thony wrote:
>>> Dear people,
>>>
>>> I'm an administrator of a network with over 300 workstations. Our
>>> company has decided that the default font has to be Arial 10 pt from
>>> now on. Where the default font was Times new Roman 12 Pt. So I have
>>> to change the default font on over 300 computers in our network. Is
>>> there an easy way of doing this? I was thinking about replacing the
>>> Normal.dot but are there more settings involved with this normal.dot
>>> file.
>>>
>>> I would like to do this by using a GPO but I couldn't find anything
>>> about this.
>>>
>>> Please help me to save me a lot of work.
>>>
>>> With Kind regards.
>>>
>>> Thony