Microsoft Edge Default and Favourites

Lion55
New Contributor III

Hi All, 

 

Does anyone have a script for Default/creating an Favorites for Microsoft Edge Web browser?

Thanks in Advance

 

2 REPLIES 2

Nandagopal
New Contributor II

Try this one!!!

You need to use a Custom Configuration Profile with JSON payload to push bookmarks to Edge.

  1. Log in to Jamf Pro.
  2. Go to ComputersConfiguration ProfilesNew.
  3. Add a name (e.g., Edge Bookmarks) and choose the scope (like "All Managed Macs" or a specific group).

Add the JSON payload

  1. Select Custom SettingsAdd.
  2. Choose Application & Custom SettingsAdd.
  3. Select Upload JSON and add the following JSON configuration:

{
"com.microsoft.edge": {
"ManagedBookmarks": [
{
"name": "Company Portal",
"url": "https://companyportal.example.com"
},
{
"name": "Support Page",
"url": "https://support.example.com"
}
]
}
}

ThomM
Release Candidate Programs Tester

I'm sorry @Lion55, I completely missed the notification for your post.  Did you end up finding what you're looking for?