SCCM | Configuration Manager | Intune | Windows Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members. Please post your questions in the correct category.

SOLVED how to derive gp name from gp english name in amdx file

Status
Not open for further replies.

yeps

Member
hi i am currently moving gpo's to intune. i have read all of microsoft's documentation but one thing they do not cover is how to derive the gp name (in admx file) from the gp english name (what you would see in gp edit console). For non custom ADMX they say you can use the csp console like the image below:

gpname.PNG

but i am wanting to move over gpos that use custom admx, such as google chrome. I can go into the gp edit console and see the "Action on startup" gpo for example in the following location: Google/Google Chrome - Default Settings (users can override)/Startup, Home page and New Tab page

but how do i associate that with a policy entry in the chrome.admx file? just by going through the file i see this entry that most closely resembles what I want to do but how can i be sure it is the right one?

Code:
<policy class="Both" displayName="$(string.RestoreOnStartup)" explainText="$(string.RestoreOnStartup_Explain)" key="Software\Policies\Google\Chrome" name="RestoreOnStartup" presentation="$(presentation.RestoreOnStartup)">
          <parentCategory ref="Startup"/>
          <supportedOn ref="SUPPORTED_WIN7"/>
          <elements>
            <enum id="RestoreOnStartup" valueName="RestoreOnStartup">
              <item displayName="$(string.RestoreOnStartup_RestoreOnStartupIsNewTabPage)">
                <value>
                  <decimal value="5"/>
                </value>
              </item>
              <item displayName="$(string.RestoreOnStartup_RestoreOnStartupIsLastSession)">
                <value>
                  <decimal value="1"/>
                </value>
              </item>
              <item displayName="$(string.RestoreOnStartup_RestoreOnStartupIsURLs)">
                <value>
                  <decimal value="4"/>
                </value>
              </item>
            </enum>
          </elements>
        </policy>
 
Solution
here is the answer:
If you download the chrome policy templates zip, go to windows\admx\en-us folder. There’s a chrome.adml that will contain all the string substitutions for the admx. Admx + locale adml = what you see in the Gp editor window.
here is the answer:
If you download the chrome policy templates zip, go to windows\admx\en-us folder. There’s a chrome.adml that will contain all the string substitutions for the admx. Admx + locale adml = what you see in the Gp editor window.
 
Solution
Status
Not open for further replies.
Back
Top