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-Key: 358494

Url: https://administrator.de/contentid/358494

Printed on: April 25, 2024 at 13:04 o'clock

Mitglied: 134998
134998 Dec 18, 2017 updated at 14:46:25 (UTC)
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
Member: Leo-le
Leo-le Dec 19, 2017 at 09:29:49 (UTC)
Goto Top
Hello Tom and thank you for your support. I will try your manual and report it.