Deploying auto correct (acl file) to all users (Office 2010)

Jack21
2StarLounger
Posts: 107
Joined: 23 Mar 2010, 13:42

Deploying auto correct (acl file) to all users (Office 2010)

Post by Jack21 »

Hi - can anyone help?

I have been requested to make some changes to the auto correct file to ensure that if a user types the company name incorrectly it auto corrects. I have removed all the acl files from the location and opened Word, made the relevant changes and closed Word and have noted that two files have been created (MSO0127.acl and MSO2057.acl). I am aware that 2057 under the name MSO2057.acl relates to the English language, which appears to hold the changes.

The problem I have is that I cannot override the user's auto correct file with mine (MSO2057.acl) so how do I deploy the changes to all users? Any help greatly appreciated.

Cheers
Jack

User avatar
HansV
Administrator
Posts: 78622
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Deploying auto correct (acl file) to all users (Office 2

Post by HansV »

Do you mean that users have already entered their own autocorrect entries in MSO2057.acl?
Best wishes,
Hans

Jack21
2StarLounger
Posts: 107
Joined: 23 Mar 2010, 13:42

Re: Deploying auto correct (acl file) to all users (Office 2

Post by Jack21 »

Yeah ...... got a feeling, after looking at this further, that there is no way to put the changes in without impacton the MSO2057.acl file.

Regards
Jack

User avatar
HansV
Administrator
Posts: 78622
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Deploying auto correct (acl file) to all users (Office 2

Post by HansV »

You could make a macro available in a global template and ask users to run that, something like

Code: Select all

Sub AddAutoCorrect()
    Application.AutoCorrect.Entries.Add "MS", "Microsoft"
End Sub
Best wishes,
Hans

Jack21
2StarLounger
Posts: 107
Joined: 23 Mar 2010, 13:42

Re: Deploying auto correct (acl file) to all users (Office 2

Post by Jack21 »

Did consider this as an option but would have to include it within an Office solution, which would need to be packaged and deployed to 13000 users. If there had been an easy option, like deploying a customised acl file then it would have been perfect but alas that doesn't seem to be available.

Regards
Jack

User avatar
HansV
Administrator
Posts: 78622
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Deploying auto correct (acl file) to all users (Office 2

Post by HansV »

I'm afraid you're out of luck then... :sad:
Best wishes,
Hans