Multiple managed Edge Favorites Folders possible?

Pavel yannara Mirochnitchenko 13,336 Reputation points MVP
2020-12-29T06:59:04.933+00:00

Is it possible that current Intune capabilities limits this feature to have only one Folder of favorites? I have need to publish multiple managed Folders to contain their own favorites? With one folder, config policy works fine, but if add the second, new computers do not get favorites at all.

A screenshot from a Intune configuration policy discription:

51914-image.png

Microsoft Edge | Microsoft Edge development
0 comments No comments
{count} votes

Accepted answer
  1. Anonymous
    2020-12-30T01:57:24.037+00:00

    @Pavel yannara Mirochnitchenko ,

    I try to make a test with the Intune configuration policy and I found that it creates multiple folders of favorites without any issue. It can be possible that you did not add the second folder properly in the code that caused this issue. I suggest you try to make a test with the sample value below. It can help you to add multiple folders of favorites.

    [  
      {  
        "toplevel_name": "Peter`s favorites"  
      },   
      {  
        "url": "example.com",   
        "name": "In The Cloud 247"  
      },   
      {  
        "url": "microsoft.com",   
        "name": "Microsoft"  
      },   
      {  
        "name": "Social media links",   
        "children": [  
          {  
            "url": "https://example.com/",   
            "name": "Twitter"  
          },   
          {  
            "url": "https://www.example.com/",   
            "name": "LinkedIn"  
          }  
        ]  
      },  
     {  
        "name": "folder2",   
        "children": [  
          {  
            "url": "https://example.com/",   
            "name": "Twitter"  
          },   
          {  
            "url": "https://www.example.com/",   
            "name": "LinkedIn"  
          }  
        ]  
      }  
    ]  
    

    Output:

    52161-221.png

    ----------

    If the response is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


2 additional answers

Sort by: Most helpful
  1. Pavel yannara Mirochnitchenko 13,336 Reputation points MVP
    2020-12-30T11:55:37.613+00:00

    Excelent, thanks for testing! Actually I am struggling even with adding one new url without folder and then everything disappear. Probably have a typo somewhere. Probably notepad is not the best tool to maintanance the list.

    0 comments No comments

  2. Pavel yannara Mirochnitchenko 13,336 Reputation points MVP
    2020-12-30T15:04:25.9+00:00

    Finally I found the error and got it working. I missed "," into one of the lines there. You must pay attention when you end the group or continue links, where you put , and where not.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.