leo-le
Goto Top

Vorlagenintegration für Office 2013

Hallo Forum,

wie habt Ihr den Pfad für die Vorlagenintegration per gpo verteilt. Ein %homepath% oder %userprofile% nimmt Office 2013 bei mir nicht.

Vielen Dank für Vorschläge"

Content-ID: 358494

Url: https://administrator.de/forum/vorlagenintegration-fuer-office-2013-358494.html

Ausgedruckt am: 02.04.2025 um 05:04 Uhr

134998
134998 18.12.2017 aktualisiert um 15:46:25 Uhr
Goto Top
Zitat von @Leo-le:
wie habt Ihr den Pfad für die Vorlagenintegration per gpo verteilt. Ein %homepath% oder %userprofile% nimmt Office 2013 bei mir nicht.
That's not true if you do it right an use the admx templates for office. This administrative policy setting leads to a registry setting wich is of type REG_EXPAND_SZ and therefore supports expansion of environment variables!

Have a look at the word administrative template word15.admx
....
    <policy name="L_PersonalTemplatesPath" class="User" displayName="$(string.L_PersonalTemplatesPath)" explainText="$(string.L_PersonalTemplatesPathExplain)" presentation="$(presentation.L_PersonalTemplatesPath)" key="software\policies\microsoft\office\15.0\word\options">  
      <parentCategory ref="L_miscellaneous178" />  
      <supportedOn ref="windows:SUPPORTED_Windows7" />  
      <elements>
        <text id="L_PersonalTemplatesPath" valueName="personaltemplates" expandable="true" />  
      </elements>
    </policy>
....
You can see expandable="true" ist the key!
So this leads to this Registry-Path:
HKCU\software\policies\microsoft\office\15.0\word\options
REG_EXPAND_VALUE with the name: personaltemplates.

I suppose you did the deployment by supplying a registry key and used REG_SZ instead of REG_EXPAND_SZ. This could be the reason, because RG_SZ doesn't support variable expansion.

Best regards
Tom
Leo-le
Leo-le 19.12.2017 um 10:29:49 Uhr
Goto Top
Hello Tom and thank you for your support. I will try your manual and report it.