0

I have a scenario where 2x DCs have ADMX templates pointing to their local computer. However, I found out that 1 ADMX templates are really old like 2013 while the other ADMX templates are very new like 2017.

So, if I create a new GPO using the later ADMX templates (using a function which is only available in the new template), what will happen when the GPO syncs to the other DC with the older templates? Will the GPO run properly on the client PCs?

Thanks in advance.

Blue Tongue
  • 147
  • 1
  • 12

2 Answers2

0

Group Policy templates affect how you see and manage Group Policy settings. They don't affect the application of Group Policy for computers or users. If you're not using the Group Policy Central Store then some DC's may not see all of the settings in the GPO's, and will therefore be unable to manage those settings.

joeqwerty
  • 109,901
  • 6
  • 81
  • 172
0

The ADMX templates are used only by the Group Policy Editor to show you the settings in a friendly way.

When you close the Group Policy editor, the options that you chose in the GUI are stored as registry values (or various format depending on the plugin).

So, nothing bad will happen when the policy syncs (data are in a "standalone" format, admx templates are not required by the clients to determine which settings should be applied).

However, you won't be able to see/edit the settings in the GUI if you open the policy editor on the DC with the older templates, additionally, this warning will show up in the GPO HTML report if generated by this DC:

Extra registry settings warning

I strongly recommend creating a Central Store for GPO Administrative Templates, with the central store you don't need to updates ADMX templates on each DC/computers with the Group Policy management console

The Central Store is a file location that is checked by the Group Policy tools by default. The Group Policy tools use all .admx files that are in the Central Store. The files that are in the Central Store are replicated to all domain controllers in the domain.

Swisstone
  • 6,725
  • 7
  • 22
  • 32
  • Thanks Swisstone for the useful information. I inherited these DCs and the predecessors did not use Central Store at all. Worse still, the ADMX files are different in each DC (actually there are 4x DC). I will first of all need to go through all of them and then consolidate them before using Central Store. – Blue Tongue May 22 '20 at 07:14