Forum Discussion

WC_KStill's avatar
WC_KStill
Brass Contributor
Jun 23, 2020

NewTabPageManagedQuickLinks (Group Policy)

I just discovered that NewTabPageManagedQuickLinks has a max value of 3. Meaning if I try to pin more than 3 website it errors. Any reason why? This isn't mentioned anywhere in the documentation.

 

https://docs.microsoft.com/en-us/deployedge/microsoft-edge-policies#newtabpagemanagedquicklinks

 

Also, as a suggestion. I think we should be allowed to configure an XML file path instead of having the use a single line format.

 

Having to use single line is a little annoying

{ "url": "https://www.contoso.com", "title": "Contoso Portal", "pinned": true }, { "url": "https://www.office.com/", "pinned": true, "title": "Office" } ]

 Compared to an XML file 

<key>NewTabPageManagedQuickLinks</key>
<array>
  <dict>
    <key>pinned</key>
    <true/>
    <key>title</key>
    <string>Contoso Portal</string>
    <key>url</key>
    <string>https://contoso.com</string>
  </dict>
  <dict>
    <key>pinned</key>
    <true/>
    <key>title</key>
    <string>Office</string>
    <key>url</key>
    <string>https://www.office.com</string>
  </dict>
</array>

 

3 Replies

Resources