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

 

1 REPLY 1

Nandagopal
New Contributor

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"
}
]
}
}