I'm following this article: https://docs.microsoft.com/en-us/onedrive/use-group-policy
So I've copied my ADML and ADMX file over to \domain\sysvol\domain\Policies\PolicyDefinitions (I'm using a centralized store), I've done this before for other policies such as Chrome etc and have not had an issue, however, the OneDrive
ADMX is giving me an error when I expand Administrative Templates:
Resource '$(string.GPOSetUpdateRing)' referenced in attribute displayName could not be found.
File \\domain\SysVol\domain\Policies\PolicyDefinitions\OneDrive.admx, line 23, column 235
So I checked both line 23 on the ADMX and what it calls on the ADML, which are below:
ADMX:
<policy name="GPOSetUpdateRing" class="Machine" displayName="$(string.GPOSetUpdateRing)" explainText="$(string.GPOSetUpdateRing_help)" presentation="$(presentation.GPOSetUpdateRing_Pres)" key="SOFTWARE\Policies\Microsoft\OneDrive"><parentCategory ref="OneDriveNGSC" /><supportedOn ref="windows:SUPPORTED_Windows7" /><elements><enum id="GPOSetUpdateRing_Dropdown" valueName="GPOSetUpdateRing"><item displayName="$(string.Enterprise)"><value><decimal value="0" /></value></item><item displayName="$(string.Production)"><value><decimal value="5" /></value></item><item displayName="$(string.Insider)"><value><decimal value="4" /></value></item></enum></elements></policy>
ADML:
<!-- turn on GPOSetUpdateRing for app updates --><string id="GPOSetUpdateRing">Set the sync client update ring</string><string id="GPOSetUpdateRing_help">Updates to the OneDrive sync client (OneDrive.exe) are released to the public through three rings-first to Insiders, then Production, and finally Enterprise. This setting lets you specify the sync client version for users in your organization. When you enable this setting and select a ring, users won't be able to change it.
Insiders ring users will receive builds that let them preview new features coming to OneDrive.
Production ring users will get the latest features as they become available.
Enterprise ring users get new features, bug fixes, and performance improvements last. This ring lets you deploy updates from an internal network location and control the timing of the deployment (within a 60-day window).
If you disable or do not configure this setting, users will get OneDrive sync clients updates when they become available in the Production ring. Users can join the Office or Windows Insiders programs to get updates on the Insiders ring.</string><string id="Enterprise">Enterprise</string><string id="Production">Production</string><string id="Insider">Insiders</string>
I'm not 100% on editing an ADML/ADMX so I'm not sure what could be wrong, but I don't see anything based on what I'm seeing? Any help would be appreciated as I'm running out of options, but here is what I'm trying to accomplish: set up a GPO to auto log
users into OneDrive, then also set Desktop, Documents and Pictures to sync in the background for the user.
Also, I'm using Windows 10 1903, the DC is Server 2016, OneDrive version 19.086.0502.0006,
Thanks in advanced!