| 59 | | * http://www.wordarticles.com/Articles/Templates/Normal.php |
| | 59 | By registry key it is possible to define a SharedTemplates directory, which Word uses to search its Normal.dotx file. |
| | 60 | |
| | 61 | For detailed information, take a look at http://www.wordarticles.com/Articles/Templates/Normal.php |
| | 62 | |
| | 63 | Lets assume, to set it to {{{c:\templates}}}: |
| | 64 | {{{ |
| | 65 | [HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\General] |
| | 66 | "SharedTemplates" = REG_EXPAND_SZ:"c:\templates" |
| | 67 | }}} |
| | 68 | |
| | 69 | It is also required to set |
| | 70 | Beginning with MS Office 2010, starting Word results in migrating the Normal.dotx and renaming the original file. |
| | 71 | To prevent this, following registy key must be set: |
| | 72 | {{{ |
| | 73 | [HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Options] |
| | 74 | "MigrateNormalOnFirstBoot"=REG_dword:00000001 |
| | 75 | }}} |
| | 76 | |
| | 77 | Word will use {{{c:\templates\normal.dotx}}} if |
| | 78 | * SharedTemplates is defined in the registry |
| | 79 | * there is no file {{{%AppdataDir%\Microsoft\Templates\Normal.dotx}}} |
| | 80 | |
| | 81 | If Word modifies Normal.dotx, it will overwrite {{{c:\templates\normal.dotx}}}. |
| | 82 | If this file/directory is write protected (which is a good idea for a global template), Word will ask for an alternate location to store this file. |
| | 83 | |
| | 84 | If the user chooses a file name different to {{{%AppdataDir%\Microsoft\Templates\Normal.dotx}}}, this new Normal.dotx habe limited influence. |
| | 85 | To archive the assumed behavior, the user has to select the path {{{%AppdataDir%\Microsoft\Templates\Normal.dotx}}}. At the next start of Word, this modified Normal.dotx is taken as default. |
| | 86 | |